I have a RadGrid with a GridButtonColumn that has CommandName="Delete". When I click this button, the events for ItemCommand and DeleteCommand both fire. In the ItemCommandEvent I run some code to delete the record from the database.
The record gets deleted from the DB, but the row still exists on the UI. I've tried calling the Rebind() and DataBind() methods on my radgrid, but that makes no difference.
I've also tried using a GridClientDeleteColumn instead of the GridButtonColumn. This causes the row to disappear from the UI, but no server-side events fire, so I cannot actually delete the data from the DB.
The record gets deleted from the DB, but the row still exists on the UI. I've tried calling the Rebind() and DataBind() methods on my radgrid, but that makes no difference.
I've also tried using a GridClientDeleteColumn instead of the GridButtonColumn. This causes the row to disappear from the UI, but no server-side events fire, so I cannot actually delete the data from the DB.