I'm trying bind grid from a web api controller, the date column is displaying as: 2018-01-08T09:46:47.6451288.
I want to format the date and I have tried the below. I am assuming that it isn't parsed as a Date which is why it isn't being formatted.
How do I get it to come in as a parsed date from the controller?
Thanks in advance!
<kendo-grid-column field="createDate" title="Create Date" format="{0:MM/dd/yyyy}" width="125">
</kendo-grid-column>