I have a DataGridView and I've set it's DataSource to be the DefaultView of a DataTable
dataGridView1.DataSource = table.DefaultView;
I then apply a filter on the datasource
dataGridView1.DataSource as DataView).RowFilter = "Name = 'Bob'";
All working fine so far.
I then add a new row the to the DataTable
DataRowView newRow = (dataGridView1.DataSource as DataView).Table.DefaultView.AddNew();
newRow["Name"] = "Steve";
(dataGridView1.DataSource as DataView).Table.Rows.Add(newRow.Row);
This new row now appears in my grid even though a filter is applied on the DataTable
What can I do to reapply the RowFilter without having to remove it and re-set it?
The reason I don't want to remove and re-set is because I don't what to grids row focus to change when the filter is removed.
Anybody got any ideas? I'm using C#4.0
Thanks in advance.