Hide or delete a row in DataGrid

  • Thread starter Thread starter Atley
  • Start date Start date
A

Atley

I have a need to hide or delete a single row from a Datagrid without
affecting the underlying DataSet, Although the DataSet could have the row
taken out of it, I do not want to affect the underlying tables in my SQLCE
database.

Any thoughts or suggestions? I haven't been able to find anything in the
help about this.

As always, thanks for any help or suggestions.

Atley
 
Atley,

To hide row(s) just set up an appropriate filter using DataView grid is
bound to.
If grid is bound directly to the table, use table's default DataView.

Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
 
Back
Top