executes a block without triggering DataProcessor
code | function | data modification code |
dp.ignore(function(){
some.addRow(id, data); // won't be saved
});
You can place data adding and deleting operations here when you don't want to save that changes on the server side.
Back to top