Reputation: 1295
For example I have a KeyDown
handler that calls view.DeleteRow(view.FocusedRowHandle)
but the RowUpdated
event on the gridView
does not seem to fire.
Am I missing something?
Upvotes: 2
Views: 2824
Reputation: 17850
The grid doesn't provide an event for row deletion (you can find the discussion of these abilities in the thread DQ52355). I suggest that you handle required events at the level of your datasource. For example, if you are using a standard DataTable class, you can handle the DataTable.RowDeleted event.
P.S. In the future, I suggest you use the Devexpress Support Center to get official and guaranteed assistance on the use of DevExpress products. Note that FULL SUPPORT IS FREE even during the evaluation period (30 days).
Upvotes: 2