Skip to main content

GridView.ShowEditor() Method

Invokes the focused cell’s editor.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public override void ShowEditor()

Remarks

The method is called automatically when users invoke a cell editor. You can also call this method manually. If you want to activate a particular cell’s editor, you need to focus the cell first. Use the ColumnView.FocusedRowHandle and ColumnView.FocusedColumn properties for this purpose.

Note: a cell editor cannot be activated in the following cases:

Refer to the Modify and Validate Cell Values topic for additional information.

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the ShowEditor member must not be invoked for these Views. The ShowEditor member can only be used with Views that display real data within the Grid Control. Use the following methods to access these Views with which an end user interacts at runtime.

The code sample below illustrates how to activate a cell editor for the “Product Price” column when when they press F12.

gridView1.KeyDown += GridView1_KeyDown;

private void GridView1_KeyDown(object sender, KeyEventArgs e)
{
    if(e.KeyCode == Keys.F12)
    {
        GridView view = sender as GridView;
        view.FocusedColumn = view.Columns["productPrice"];
        view.ShowEditor();
        e.Handled = true;
    }
}

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowEditor() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also