I got Local Json data is
var MYDATA=[{"StartTime":'19:00:12.000',"StartDate":'2014-02-11',"Name":"John"},
{"StartTime":'20:09:15.000',"StartDate":'2014-02-11',"Name":"Alan"},
{"StartTime":'20:22:22.000',"StartDate":'2014-02-11',"Name":"Liza"}
];
I make kendo grid has properities are sortable,groupable,filterable,reziable. When I Try to filter to StartTime , it is not working. Can I put schema model field type is time?
StartTime:{ type:time}
If I dont define StartTime field in to schema model . Kendo grid thinks "it is string".
I define it date then defined it in column below;
{ field: "StartTime", title: "Start Time" ,format: "{0:hh:mm:ss}", filterable: {
ui: "timepicker",
}}
But Not filter or Show in my grid.