Skip to main content

GridControl.RowEditMode Property

Specifies whether the grid invokes an in-place editor or edit form when an end-user starts to edit a data cell or add a new row.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

Declaration

[XtraSerializableProperty]
public RowEditMode RowEditMode { get; set; }

Property Value

Type Description
RowEditMode

A RowEditMode enumeration value.

Available values:

Name Description
Inplace

Cell values are edited within the in-line edit row.

RowEditMode_Inplace_iOS

Popup

Cell values are edited via the popup edit form.

RowEditMode_Popup_iOS

GridArea

Cell values are edited via an edit form displayed over the entire grid area.

RowEditMode_FullScreen_iOS

ScreenArea

Cell values are edited via an edit form placed on a separate NavigationPage and displayed in the full screen mode with the navigation bar at the top.

RowEditMode_FullScreenWithNavigationBar_iOS

Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

Use the RowEditMode property to set one of the available row edit modes for a grid.

See Also