7 Answers, 1 is accepted
When using template the formation must be handled within the template. For example:
{
field:
"BirthDate"
,
title:
"Birth Date"
,
template:
'#= kendo.toString(BirthDate,"dd/MM/yyyy") #'
}
You can find more details by inspecting the code in the following demo:
http://demos.kendoui.com/web/grid/index.html
http://docs.kendoui.com/getting-started/framework/globalization/dateformatting
All the best,
Nikolay Rusev
the Telerik team

Sorry but i didn't mention, that i used asp.net mvc and want to write as little javascript code as possible. Now when i used date time it's displayed as /Date(.......)/ format. Is there any way to do this on the server and don't use javascript.
Thanks in advance,
Dzmitry Shmidt
If you describe the fields in the DataSource.schema and mark them with correct types it will automatically convert those values to correct JavaScript types. For more details see the configuration for the date field in the following demo:
http://demos.kendoui.com/web/grid/remote-data.html
Nikolay Rusev
the Telerik team

Could you provide some code about it, with Razor?

Could you provide some code about it, with Razor?
For instance:
.ClientTemplate(
string.Format("<spam style='background-color: green; text-align:right;'>{0:yyyy}}</spam>", "#:ShipDate#")
);
Hello Raimundo,
What my colleague suggested is to set the type of the data that you get from the server to be date, so the Grid will know to parse the data to valid JavaScript objects. How to define a model is explained here:
http://docs.telerik.com/kendo-ui/api/javascript/data/model#configuration-Define
If this does not help, please send us a send a runnable sample and we will be happy to help.
Regards,Kiril Nikolov
Telerik
See What's Next in App Development. Register for TelerikNEXT.

This thing worked for me good
c.Bound(p => p.datetimecalculated).Format("{0:dd-MM-yyyy}");