AD
Administrator
Syncfusion Team
November 18, 2002 10:33 PM UTC
In a virtual grid, you delete a row of data by removing the row from your external data source and then redrawing the grid. The grid only displays what is in the external data source.
So, if you want to initiate this deletion process when the user presses the delete key, you could handle the CurrentCellKeyPress event, and if the keyCode is Keys.Delete, then do whatever you need to do to your external data source to remove the current row.