GridView.ShowEditor() Method
Invokes the focused cell’s editor.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
Declaration
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 (the user cannot edit the focused cell’s value) in the following cases:
- the ColumnViewOptionsBehavior.Editable option is disabled;
- the focused column’s OptionsColumn.AllowEdit property is set to false;
- the ColumnView.ShowingEditor event handler cancels the cell editor’s activation.
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.
- GridControl.MainView - returns the top most View in a grid;
- GridControl.FocusedView - returns the focused View;
- GridControl.DefaultView - returns the currently maximized View;
- the sender parameter of View specific events;
- GridView.GetDetailView - returns a detail clone View for a specific master row.
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;
}
}
Related GitHub Examples
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.