Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Put your filter in a different method and then call it to filter, your doing it instantly hence this is why it is filtering at first... When you add a new row the filter isn't applied. If you put your filter in a different method and then call it, it will filter it. – Mr CoDeXeR Feb 9 at 5:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.