我有一个表单,其中的一个字段为可编辑网格。
store.sync()
是在Events.AfterEdit()
之后使用还是仅保存在表单提交中?代码:
store.sync({
callback: function () {
console.log('callback', arguments);
},
success: function () {
console.log('success', arguments);
},
failure: function (batch, opt) {
//code for failure
}
});
答案 0 :(得分:0)
实际上,我们不需要store.sync()来保存可编辑网格的数据。如果我们通过使用model.save()或类似的操作将正确的json数据传到后端,则可以通过对模型的常规操作简单地完成此操作。下面是设置数据的摘录。
var rowIndex = myGrid.find('id', yourServerResponseData.id);
var rowRecord = myGridStore.getAt(rowIndex);
rowRecord.set(yourServerResponseData);
rowRecord.commit();