I have a datagridview on my form. The datagridview has a bindingsource on a table in a dataset. I filter the datagridview on a boolean field:

Code:
tblTransactionsBindingSource.Filter = "Complete = False"
If you click on Complete on the datagridview on one of the rows being displayed the row disappears. Well, almost. It disappears after you click on another row. What property do I need to set to cause it to disappear immediately? I tried EditOnEnter and that didn't work.