Is it possible to display deleted row(s) in DataGrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to make the DataGrid shows a row with RowState ==
DataRowState.Deleted?
(e.g. display a deleted row using another color and allow user to undo the
deletion)

thanks
 
Play around with DataViews.
When you create an instance of a dataview based on a datatable, you can
specify which rowversions to use (deleted, etc).
 
It worked!!
Thanks!!

David Jessee said:
Play around with DataViews.
When you create an instance of a dataview based on a datatable, you can
specify which rowversions to use (deleted, etc).
 
Back
Top