have two columns in database
I want to format 'CreatedDate' according to the 'DateFormat' column in a kendo grid. I can use template: "#= kendo.toString(kendo.parseDate(CreatedDate), DateFormat) || '' #", but it wont display correct date format in the date time picker of column filter.
so i'm looking something like this //format: "{ 0:#= DateFormat #}",
code sample --------------------------------------------------- columns: [ { field: "CreatedDate", width: "10%", title: "{{ 'CreatedDate' }}", hidden: true, //format: "{ 0:#= DateFormat #}", }