Hi,
Before linking DataProcessor to a grid, deleteRow() method worked fine.
After linking DataProcessor, deleteRow() method does not work.
I do not want the change (deletion) to be reflected on the server-side.
So, I tried testing ignore() method as follows.
dp.ignore(function(){
myGrid.deleteRow(id); // NOT working - the row still shows up on the grid with no error
myGrid.addRow(id_new, data); // working as expected
myGrid.moveRow(id, “down”); // working as expected
});
I want to know whether deleteRow() works with ignore() method or DataProcessor.
I am currently using dhtmlx suite v4.21 pro.