Dhtmlxconnector without automatically updating data?

I’m looking for ways to speed up a project, which will have several interconnected grids and will potentially hold several thousand rows of data. I thought the dhtmlxconnector might be a good way to help with that. My question, though, is this: the user will be able to manipulate (add, remove, etc) rows of data from the grid before deciding to save it. Is it possible to use dhtmlxconnector without automatically saving the rows after they’re changed? Thanks!

To disable automatically saving you should add following line to the DataProcessor initialization on the client side:

myDataProcessor.setUpdateMode(“off”)

In such case the dataprocessor will store the information about all changes in the grid, and will send them to the server only after sendData method is executed.

Please find more information here docs.dhtmlx.com/doku.php?id=dhtm … ialization
docs.dhtmlx.com/doku.php?id=dhtm … updatemode
docs.dhtmlx.com/doku.php?id=dhtm … aprocessor