我遇到了剑道网格自定义编辑器的问题。当我点击kendo网格上的编辑按钮时,我想使用dateTimePicker作为我的编辑器。但是当我尝试使用dateTimePicker自定义网格时,总会出现错误:
Uncaught TypeError: e.indexOf is not a function ---------- kendo.custom.min.js:1
这是简单的源代码:
var data = [
{"id":1, "dateTime": 1420947900000},
{"id":2, "dateTime": 1421034300000},
{"id":3, "dateTime": 1421036100000},
];
$("#grid").kendoGrid({
selectable: true,
editable: "inline",
columns: [
{
field: "dateTime",
title: "<center>Date Time</center>",
width: "200px",
format: "{0:MM/dd/yyyy hh:mm}",
template: "#= kendo.toString(new Date(parseInt(dateTime)), 'MM/dd/yyyy hh:mm') #",
editor: dateTimeEditor2
},
{ command: ["edit", "destroy"], title: " ", width: "170px" }
],
dataSource: {
transport: {
read: function(e) {
e.success(data);
},
update: function(e) {
//my update Function
alert(e.dateTime);
},
autosync: true
},
schema: {
model: {
id: "id",
fields: {
dateTime: { type: "datetime" },
}
}
}
}
});
function dateTimeEditor2(container, options) {
$('<input data-text-field="' + options.field + '" data-value-field="' + options.field
+ '" data-bind="value:' + options.field + '" />')
.appendTo(container)
.kendoDateTimePicker({
format:"MM/dd/yyyy hh:mm",
value: new Date(options.model.dateTime)
});
}
或者您可以在此link
上查看我已经在许多不同的来源上检查了它,例如:
答案 0 :(得分:1)
你的&#34; dateTime&#34;字段是数字,但您正在使用&#34; datetime&#34;网格选项的类型。在编辑器功能中,使用&#34; data-bind&#34;自定义输入上的属性会对kendoUI代码进行制动,因为它需要某种日期文本...
我将代码更新字段类型更改为数字并删除输入属性。错误消失了。你需要用自定义事件实现DateTimePicker,以便在更改编辑器值时更新grid dataItem的数值。或者可能在&#34;更新&#34;通过将datetime值解析为整数并设置grid dataItem ..
,在您的示例中单击按钮额外注意: 我还会考虑操作我的数据源数组,在将它们绑定到网格之前将这些数值更改为JS DateTime值。这可能是更简单的解决方案。
-