BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridDataBoundGrid1_CurrentCellMoved(object sender, GridCurrentCellMovedEventArgs e) { if(this.gridDataBoundGrid1.Binder.IsEditing) this.gridDataBoundGrid1.Binder.EndEdit(); }As for as sorting, I think you would have to clear the undo/redo stacks after a sort. The undo information would no loner be valid. The grid does not try to maintain undo/redo information for sorting. If you want support undoing a sort, you would have to create a custom undo command to manage this. Here is a forum thread with a sample. http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=17487
>private void gridDataBoundGrid1_CurrentCellMoved(object sender, GridCurrentCellMovedEventArgs e) >{ > if(this.gridDataBoundGrid1.Binder.IsEditing) > this.gridDataBoundGrid1.Binder.EndEdit(); >} >> >As for as sorting, I think you would have to clear the undo/redo stacks after a sort. The undo information would no loner be valid. > >The grid does not try to maintain undo/redo information for sorting. If you want support undoing a sort, you would have to create a custom undo command to manage this. Here is a forum thread with a sample. http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=17487