Deleting a row, jus strikes it out instead of removing the r


Hi



When i delete a row, it simply striked out the row. I want the entire row to disappear. Any idea what could be the problem.



Thanks for the help in advance.

This is normal behavior in case when dataProcessor used, in such case row will be removed only when this operation will be executed against DB, so it will look as


a) deleteRow executed - row just marked as deleted
b) dataProcessor.sendData() executed - data synced with server
c) response from server received, that confirms update - row fully removed from grid.

Hi, i use ajax to send request to delete the row in DB and i do the grid.deleteRow() after i get the response back from the server. Even then the rows appear as striked out. Please help me in this regard.