IGrid.EditMode Property
In This Article
Specifies how users edit Grid data.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[DefaultValue(GridEditMode.EditForm)]
GridEditMode EditMode { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Grid |
Edit |
A Grid |
Available values:
Name | Description |
---|---|
Edit |
The Grid displays the edit form instead of the edited data row. |
Popup |
The Grid displays the edit form in a pop-up window. |
Edit |
The Grid displays inline editors instead of the edited data row. |
Edit |
The Grid displays an in-place editor when a user clicks a data cell. The component saves all cell values simultaneously when focus leaves the edited row. |
#Remarks
Refer to the EditMode property description for more information and an example.
See Also