Hello.
I have a grid and a button on a form. The button is not in the grid. It is by itself.
When a user changes a value in the grid and then clicks the button, the datasource/datarow that is bound to the grid is not updated. It only updates if I manually move the focus off the cell.
Is there a property or something that will update the datasource when the value in the cell changes?
Thank you,
Mike
That did the trick.
Thank you.
add at the beginning of button click :
ultraGrid1.PerformAction(Infragistics.Win.UltraWinGrid.UltraGridAction.ExitEditMode);