如何使用store.sync在Ext JS中保存可编辑网格的数据?

时间:2018-07-18 14:41:40

标签: extjs store

我有一个表单,其中的一个字段为可编辑网格。

  1. 单击网格外部后如何保存网格数据。
  2. 方法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
    }
});

1 个答案:

答案 0 :(得分:0)

实际上,我们不需要store.sync()来保存可编辑网格的数据。如果我们通过使用model.save()或类似的操作将正确的json数据传到后端,则可以通过对模型的常规操作简单地完成此操作。下面是设置数据的摘录。

var rowIndex = myGrid.find('id', yourServerResponseData.id);
var rowRecord = myGridStore.getAt(rowIndex);
rowRecord.set(yourServerResponseData);
rowRecord.commit();