Now, this one can be very obvious for someone, but I am stuck right on this:
Datagridview is bound to a binding source and the binding source is bound to a datatable.
Datagridview is now showing an empty row (with an asterisk).
When I click on a cell a cursor icon appears near that asterisk.
Now I am entering data in that row. When I enter a value in the first cell, a new row appears underneath this one, and the asterisk icon moves to that row. CellValueChanged gets fired, BUT in the watch window, the datatable still doesn't have that row.
I am finishing all columns and hitting a save button, BUT still in the watch window is see that the underlying datatable is not holding that row.
How to get that change back to datatable? Do I need to call some method after clicking that save button? I've tried with _detailDataTable.AcceptChanges(); but nothing happened.




