Hi,
I am using the addrow function to addrows by specifying the rowID and if I delete them and add again with same id, it doesn’t add it to grid. Only after reloading the grid it is possible. If I append some random ID to the rowID, then it works fine. How to fix it?. I am using DataProcessor to handle the add/delete events. when I enable the debug mode, I can find that the 2nd time added ID is going to dataprocessor without any arguments.
No one to support?
If you are using DataProcessor with updated mode off, row will actually deleted from the grid only after grid receive confirmation from server side that row was successfully deleted.
So if you delete row without sending request to the server side and then immediately add new row with the same id, new row will not be added as row with such id already exists.
Cheers, that worked beautifully.