I have a column in Kendo Grid for DateTime's:
columns.Bound(typeof(DateTime), "MyDateTimeColumn").ClientFooterTemplate("#= kendo.toString(min, 'yyyy/MM/dd') #")
As you can see I have defined format for footer and it works fine, but only when I have ServerOperation(false) defined in DataSource. When I switch ServerOperation to TRUE, the data displayed in footer is something like "/Date(1384124400000)/".
How to make Kendo Grid format aggregated DateTime in footer in this case?