I am getting Data from Web API as array of object with one of the object's property/field as Date field. on API side its handled and returned as date . But when the data is retrieved after Ajax call , Grid (most likely Javascript as well) treat it as string and grid shows something like "2019-01-01T00:00:00".
I tried to use column.format to display it as date . which doesn't work .
Then i used Template to parse it using kendo.toString which worked,
But when i export grid to Excel or PDF it still shows 2019-01-01T00:00:00
Also i am trying to use Filter option on Column and trying to use Datetimepicker
column.filter.ui ="datetimepicker"
which shows the date picker but filter doesn't work.
Could you please suggest some solution or is there any step i am missing.
Thanks