How To Disable Auto Update When Jqgrid Edited?
I'm trying to use form editing on jqgrid. When the data is changed, data is sent to the web server an automatically. I don't won't to send edited data to server. Just edit data on
Solution 1:
Form editing not support only local editing now. I suggested Tony (the developer of jqGrid) to implement this in the next release of jqGrid (see http://www.trirand.com/blog/?page_id=393/feature-request/support-of-editurl-clientarray-local-editing-for-the-form-editing/). We can hope that this feature will be implemented in the future.
Currently you can use only inline editing or cell editing together with the datatype: 'local'
and editurl: 'clientArray'
. As an example see http://www.ok-soft-gmbh.com/jqGrid/ClientsideEditing4.htm. To go in the edit mode use double click. To conform editing (to save editing results locally) use Enter key.
Post a Comment for "How To Disable Auto Update When Jqgrid Edited?"