我有以下剑道网格:
$("#teachers").kendoGrid({
dataSource: dataSource,
toolbar: ["create"],
columns: [
{ field: "employeeId", title: "Employee Id" },
{ field: "firstName", title: "First Name", editor: categoryDropDownEditor },
{ field: "lastName", title: "Last Name" },
{ field: "isHeadmaster", title: "Is a Headmaster?" },
{ command: ["edit", "destroy"], title: " ", width: "153px" }],
editable: 'popup'
});
我遇到的问题不在于网格,而在于编辑器模板——如您所见,我正在使用弹出式编辑,并且我想为其中一个字段提供一个自动完成选择小部件。
这是如何categoryDropDownEditor
定义的:
function categoryDropDownEditor(container, options) {
$('<input required data-text-field="CategoryName" data-value-field="CategoryID" data-bind="value:' + options.field + '"/>')
.appendTo(container)
.kendoAutoComplete({
dataSource: [
"Albania",
"Andorra",
"Armenia",
/* ... */
"Ukraine",
"United Kingdom",
"Vatican City"
],
filter: "startswith"
});
}
无论我输入什么,自动完成小部件都不起作用。根本没有出现任何建议。知道发生了什么吗?