2013-07-15 159 views

回答

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); 
    } 
});