Skip to main content

GridView.ShowInplaceEditForm() Method

Opens an Edit Form for the focused row as an in-line panel.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public virtual void ShowInplaceEditForm()

Remarks

The ShowInplaceEditForm method displays an Edit Form as an inline panel. This method is in effect if the GridOptionsBehavior.EditingMode property is set to a value that enables data editing via an Edit Form.

To display an Edit Form as a modal window, call the GridView.ShowPopupEditForm method. To display an Edit Form based on the Edit Form type specified in the GridOptionsBehavior.EditingMode property, call the GridView.ShowEditForm method.

Note

If there is insufficient space in the GridView to display an Edit Form as an inline panel, it is forcibly displayed as a separate modal window.

Note

If the GridOptionsBehavior.EditingMode property is set to GridEditingMode.Inplace or EditorShowMode.Default, the GridView.ShowInplaceEditForm, GridView.ShowPopupEditForm and GridView.ShowEditForm methods are not in effect.

See Also