Hello,
I am new to Windows Forms and Ultra Win Grid as well . I have currently an Untlra Wingrid and the user is able to add rows to the win grid, but the problem is this, after the user adds rows to the table, if he wants to edit the value of a Cell and save it for a particular row he needs to move away from the cell and click on a different cell or a different row in the gird in order to get the value saved.
If by chance i change a value in the cell and click on save it will not save the changed value, but will revert back to the old one.
How ever if I do make a change and click on a different cell or use the arrow keys to move to a differnt cell or differnt row I am able to save the changed value.
I am not sure what property needs to be changed in the UltraWinGrid in order for us to save the change.
Hoping for a quick reply.
Thanks,Ashwin
ajagadish said: If by chance i change a value in the cell and click on save it will not save the changed value, but will revert back to the old one.
Brian Fallon"]If this is the case, you can simply call UltraGrid.ActiveCell.EndEdit
Correction, use UltraGrid.PerformAction(UltraGridAction.ExitEditMode).