HOME PAGE | DOWNLOAD | TUTORIALS | XtraReports
Devexpress

Sunday, July 22, 2012

How to: Discard Changes Made to the Focused Row

The code below discards changes made to the focused record by calling the ColumnView.CancelUpdateCurrentRow method. If an editor is opened for a specific record cell, it is closed while discarding the user's modifications.

C#

    ColumnView view = (ColumnView)gridControl1.KeyboardFocusView;

    if (view.IsEditing)

        view.HideEditor();

    view.CancelUpdateCurrentRow();

 

VB

    Dim view As ColumnView = CType(gridControl1.KeyboardFocusView, ColumnView)
    If view.IsEditing Then view.HideEditor()
    view.CancelUpdateCurrentRow()

 

No comments:

Post a Comment