I have a KendoGrid like below and when I run the application, I\'m not getting the expected format for date column.
KendoGrid
date
$(\"#empGrid\")
The option I use is as follows:
columns.Bound(p => p.OrderDate).Format("{0:d}").ClientTemplate("#=formatDate(OrderDate)#"); function formatDate(OrderDate) { var formatedOrderDate = kendo.format("{0:d}", OrderDate); return formatedOrderDate; }