我想在此示例中为下拉列表添加 onchange 操作:
http://demos.kendoui.com/web/grid/foreignkeycolumn.html
我需要将行 ID 发送到此函数。
我想在此示例中为下拉列表添加 onchange 操作:
http://demos.kendoui.com/web/grid/foreignkeycolumn.html
我需要将行 ID 发送到此函数。
如果您看到此示例,您可以为列指定自定义编辑器,并在该方法中执行您需要的任何操作,如下所示,
function categoryDropDownEditor(container, options) {
$('<input required data-text-field="CategoryName" data-value-field="CategoryID" data-bind="value:' + options.field + '"/>')
.appendTo(container)
.kendoDropDownList({
autoBind: false,
select: function(e) {
var item = e.item;
var text = item.text();
// Use the selected item or its text
},
dataSource: {
type: "odata",
transport: {
read: "http://demos.kendoui.com/service/Northwind.svc/Categories"
}
}
});
}