Skip to main content
A newer version of this page is available. .

DataViewBase.ShowEditor() Method

Activates the focused cell’s inplace editor.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.Core.dll

Declaration

public void ShowEditor()

Remarks

Note

Cell editors can be activated if the view’s DataViewBase.AllowEditing property is set to true and the DataViewBase.NavigationStyle property is set to GridViewNavigationStyle.Cell.

To invoke the cell’s editor in code, you should focus the cell and call the ShowEditor method:

tableView.MoveLastRow();
tableView.Grid.CurrentColumn = tableView.Grid.Columns[0];
Dispatcher.BeginInvoke(new Action(() => {
    tableView.ShowEditor();
}), DispatcherPriority.Render);

Refer to Focusing Cells and Moving Row Focus for information on how to move cell and row focus.

The ShowEditor method raises the GridViewBase.ShowingEditor event. This event allows you to prevent showing editors for individual cells, thus preventing their values from being edited. After the editor has been shown, the GridControl raises the GridViewBase.ShownEditor event.

See Also