Skip to main content
All docs
V25.1
  • TreeListView.NodeCanceledCommand Property

    Gets or sets a command executed when the changes made in a node are discarded.

    Namespace: DevExpress.Xpf.Grid

    Assembly: DevExpress.Xpf.Grid.v25.1.dll

    NuGet Package: DevExpress.Wpf.Grid.Core

    Declaration

    public ICommand<NodeCanceledArgs> NodeCanceledCommand { get; set; }

    Property Value

    Type Description
    ICommand<NodeCanceledArgs>

    A command executed when the changes made in a node are discarded.

    Remarks

    Bind a command to the NodeCanceledCommand property to maintain a clean MVVM pattern. The command works like a NodeCanceled event handler and allows you to process the node edit discard operation in a View Model.

    You can discard changes made within a node while it has focus. The GridControl updates the data source when focus moves to another node.

    Press ESC twice to discard changes. Press ESC the first time to close the editor and discard all changes made in the current cell. Then press ESC again to call the IEditableObject.CancelEdit method that discards changes made in other cells of the focused node.

    The bound command is called when you press ESC the second time.

    Note

    If a data item class does not implement the IEditableObject interface, you can discard changes only in the focused cell.

    Refer to the following topic if you want to cancel changes made within a row asynchronously: ResultAsync.

    See Also