我用远程绑定数据源创建了网格。我用过批量编辑。一栏有数量。我想要一个事件 - 在更新单元格数量后被触发。我尝试使用DataSource的更改事件,但它没有被解雇。
答案 0 :(得分:4)
您可以在定义网格时使用编辑事件,然后定义模糊以在离开后执行某些操作并结束编辑单元格或键盘,以便为输入中的每个输入执行某些操作。
例如:
$("#personel").kendoGrid({
dataSource: dataSource,
navigatable: true,
toolbar: ["create", "cancel"],
columns:gridColumns,
editable: "incell",
edit: function(e) {
var input = e.container.find(".k-input");
input.blur(function() {
.... your code ....
});
input.keyup(function(e) {
.... your code ....
});
}});