Saving edited record in a cell editing grid
问题 How can I save the edited record on click of the save button? my code : // create the Data Store var store = Ext.create('Ext.data.Store', { //autoSync: true, autoLoad:true, autoDestroy: true, url: 'update_premise.php', model: 'Plant', proxy: { type: 'ajax', // load remote data using HTTP url: 'getLab.php', // specify a XmlReader (coincides with the XML format of the returned data) reader: { type: 'json' }, writer: { type: 'json' } }, sorters: [{ property: 'lab_name', direction:'ASC' }] });