I'm trying to get a list of rows deleted by pressing the '-' button in a Devexpress Grid widget as depicted here. However, doing the following does not return any results
DataView delrows = new DataView(myTableAdapter.DataView.Table);
delrows.RowStateFilter = DataViewRowState.Deleted;
What am I doing wrong?
edit: Filtering on Added and Modified rows works fine.
instead of doing as you do now try this:
of course it's not easy to guess without knowing better your data binding architecture...