rowedit grid with sync
问题 I try to implement a general rowediting grid like this example, with the difference that I would like to sync the changes with the server backend. Until now, I can add a new line with onRoweditAdd . Ext.define('Mb.view.base.RoweditListController', { extend: 'Ext.app.ViewController', alias: 'controller.roweditlist', onRoweditAdd: function(me){ var grid = me.up('panel'), edit = grid.editingPlugin, store = grid.getStore(), record = store.getModel().create({id: 0}); edit.cancelEdit() store.insert