Strange behavior of Bindingsource & DataGridView

0
0

Hi,

I have a datagrid, and assigned the datasource as follows:

bs = new BindingSource(list, null);
dataGridView1.DataSource = bs;

 

Before, when I call

bs.RemoveCurrent();

DataGridView will also show that the current row is deleted, but now it’s no longer showing the desired behavior.

 

Do I need to refresh the grid?

 

Thanks.

  • You must to post comments
0
0

Glenn,

issue #2452 is fixed in our latest Wisej development build (2.1.16).

Best regards
Frank

  • You must to post comments
0
0

Glenn,

this is logged as #2452 and a fix will be included in our next Wisej build.
I´ll inform you when it´s available.

Best regards
Frank

  • You must to post comments
0
0

I have tried the ff:

bs.RemoveCurrent();
dataGridView1.Refresh();

Is this the new behavior?

 

Thanks.

  • You must to post comments
0
0

Hi, any update on this?

  • You must to post comments
Showing 4 results
Your Answer

Please first to submit.