0
我試圖在網格中使用取消事件,但事件永遠不會被觸發。網格取消事件沒有觸發
代碼:
$("#grid").kendoGrid({
editable: true,
toolbar: ["create", "save", "cancel"],
dataSource: _dataSource,
columns: [{
title: "Description",
field: "description"
}, {
title: "Active",
field: "active"
}],
edit: function (e) {
console.log("add row");
},
cancel: function (e) {
console.log("cancel row");
}
});
當我點擊「添加新記錄」,控制檯顯示「添加行」,但是當我點擊「取消更改」沒有在控制檯中顯示出來。
這是一個非常簡單的代碼,它遵循文檔,但我錯過了什麼?
版本:Kendo UI v2016.1.112
謝謝!
謝謝!我誤解了。但是因爲我有更多的一個網格,我使用下面的代碼:'$(「#gridSomething」)。on(「mousedown」,「.k-grid-cancel-changes」,function(e){console.log 「#gridSomething k-grid-cancel-changes」); });' – lpfx