I need to be able to update values of a dataset once a cell loses focus from editing. I know when the cell loses focus (CellEditEnding), but problem is, the actual updating
I had a similar problem and none of the "usual" fixes worked...
What worked for me was to use the overloaded version of CommitEdit() as follows
CommitEdit()
DataGrid1.CommitEdit(DataGridEditingUnit.Row, true);