kendo ui grid datasource filter date format

梦想与她 提交于 2019-12-03 03:16:28

First include the JavaScript file corresponding to the English culture:

<script src="http://cdn.kendostatic.com/2012.2.710/js/cultures/kendo.culture.en-GB.min.js"></script>

Then invoke kendo.culture to set the current culture:

kendo.culture("en-GB");

Kendo Grid will then automatically use the 'dd/MM/yyyy' format.

More information about how Kendo UI deals with globalization can be found in the documentation.

Here is a live demo: http://jsbin.com/onetol/1/edit

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!