Check documentation for the latest version of dhtmlxSuite ignore DHTMLX Docs

ignore

executes a block without triggering DataProcessor

void ignore(function code);
codefunctiondata modification code

Example

dp.ignore(function(){
   some.addRow(id, data); // won't be saved
});

Details

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