I want to perform an Undo on the ultragrid or dataset. At the moment im doing the logic below, can you point me into the right direction
this.BindingSource.RaiseListChangedEvents = false; this.BindingSource.CancelEdit(); this.DataSet.RejectChanges(); this.ultraGrid1.UpdateData();
The grid supports a very limited undo functionality for multi-cell operations like Cut, Copy, and Paste.
But there is no undo in the grid for editing cells and such. The closest thing to undo like that is that you can cancel the change in the current cell or row using the CancelUpdate method.
Can you send me a example of you using your cancel update method?