Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Gayathri on Dec 14, 2007 03:44
open dhtmlx forum
Deleting a row, jus strikes it out instead of removing the row.

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.

Answer posted by Support on Dec 14, 2007 04:55
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.
Answer posted by Gayathri on Dec 28, 2007 02:39
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.