我为日期字段编写了这样的模式:
StartDate: { type: "date", format: "{0:dd/MM/yyyy}" }
和列定义:
{
field: "StartDate",
title: "Start Date",
template: '#= StartDate!=null ? kendo.toString(StartDate, "dd/MM/yyyy"): " " #',
width: 100
}
但是在编辑过程中,我仍然看到MM/dd/yyyy
中datepicker
格式的日期:
如果我尝试手动以dd/MM/yyyy
格式写日期,我会看到:
答案 0 :(得分:0)
尝试添加format field
,如下所示:
columns: [{
field: "StartDate",
format: "{0: dd/MM/yyyy}"
// ...
}]
答案 1 :(得分:0)
解决设置文化问题
kendo.culture("en-GB")