G
Guest
I'd like to bind a DataTable from a DataSet to a DataGrid and apply some filters on the table. The crucial part is that the dataSource is the DataSet and the DataTable is just the dataMember, which is achieved by dataGrid.SetDataBinding(dataSet, dataTable)
The problem is how to apply the row filter on the table: when I set the RowFilter property on the table's DefaultView, nothing happens. Interestingly, the same code works if I bind the table directly with dataGrid.SetDataBinding(dataTable, "")
Does anybody know how to filter the table
Thanks in advanc
Alex
The problem is how to apply the row filter on the table: when I set the RowFilter property on the table's DefaultView, nothing happens. Interestingly, the same code works if I bind the table directly with dataGrid.SetDataBinding(dataTable, "")
Does anybody know how to filter the table
Thanks in advanc
Alex