在编辑值和行编辑中的编辑值之前比较Sencha

时间:2013-07-15 13:53:09

标签: extjs

我需要将编辑前的值和更新后的值与行编辑器更新进行比较。我需要将json字符串发送到只有编辑值的后端。请让我知道最好的方法。

谢谢。

1 个答案:

答案 0 :(得分:1)

您附加到网格的编辑事件并收集所有更改的值

var changes = [];

grid.on('edit', function(editor, context) {
    var originalValue = context.value;
    var newValue = record.get(context.field);
    if ( originalValue !== newValue ) {
        changes.push(context);
    }
});