Kendo grid date column not formatting
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I have a KendoGrid like below and when I run the application, I'm not getting the expected format for date column. $ ( "#empGrid" ). kendoGrid ({ dataSource : { data : empModel . Value , pageSize : 10 }, columns : [ { field : "Name" , width : 90 , title : "Name" }, { field : "DOJ" , width : 90 , title : "DOJ" , type : "date" , format : "{0:MM-dd-yyyy}" } ] }); When I run this, I'm getting " 2013-07-02T00:00:00Z " in DOJ column. Why it is not formatting? Any idea? 回答1: I found this piece of information and got it to work correctly.