Is there an option to use operations, insert and update, in batch mode?
Thanks
Hello,
By batch update i mean the end user can insert, update and delete several rows and send then send all those operations in the same ajax call.
Something like this: http://demos.devexpress.com/MVCxGridViewDemos/Editing/BatchEditing
For the batch delete checkout the demo _Batch Delete_ http://js-grid.com/demos/
The same principle can be applied for inserted and edited data. Just in the controller updateItem and insertItem methods instead of sending data to the server save data on the client-side. And send all changed data when user is ready to submit (e.g. add an external button for this).
Most helpful comment
For the batch delete checkout the demo _Batch Delete_ http://js-grid.com/demos/
The same principle can be applied for inserted and edited data. Just in the controller
updateItemandinsertItemmethods instead of sending data to the server save data on the client-side. And send all changed data when user is ready to submit (e.g. add an external button for this).