我有一个包含数据的网格。目前我正在使用“弹出编辑”和此窗口的自定义模板。
editable: {
mode: "popup",
window : {
resizable: true,
animation: false,
modal: false
},
template: kendo.template($("#popup-editor").html())
},
我希望在用户查看编辑窗口时更新网格, 但是当我这样做时,窗口正在关闭:
$("#grid").data("kendoGrid").dataSource.read();
如何在不关闭窗口的情况下更新网格?
答案 0 :(得分:0)
根据Kendo documentation你应该:
- 设置网格的可编辑配置选项
-declare字段定义通过DataSource架构
- 配置DataSource以执行定义其传输的CRUD数据操作 - >创建/更新/销毁属性
弹出编辑器将自动更新数据源