Dear Gurus!
I use next code for creating content of dataGridView:
var source = new BindingSource(); source.DataSource = masterView; // type CollectionView dataGridView.DataSource = source;
When there is masterView has at least 1 row, then all is fine.
But if after applying the filter masterView is empty, then instead my data I saw next picture:
How to fix?