Skip to main content
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET 6.0+ platform documentation. This link will take you to the parent topic of the current section.

IModelListViewWeb.InlineEditMode Property

Specifies the way cell values are edited.

Namespace: DevExpress.ExpressApp.Web.SystemModule

Assembly: DevExpress.ExpressApp.Web.v23.2.dll

NuGet Package: DevExpress.ExpressApp.Web

Declaration

[DefaultValue(InlineEditMode.Inline)]
InlineEditMode InlineEditMode { get; set; }

Property Value

Type Default Description
InlineEditMode Inline

An InlineEditMode enumeration value specifying the way cell values are edited.

Available values:

Name Description
EditForm

Specifies that cell values are edited in the Edit Form. The data row whose values are currently being edited is not displayed.

EditFormAndDisplayRow

Specifies that cell values are edited in the Edit Form. The data row whose values are currently being edited is displayed above the Edit Form.

Inline

Specifies that cell values are edited within the Inline Edit Row.

PopupEditForm

Specifies that cell values are edited in the Popup Edit Form.

Batch

Enables the Batch Edit Mode. In this mode you can edit multiple rows and then click Save changes to save all modified objects at once.

Remarks

Considered by the ASPxGridListEditor, when displaying editable List Views.

You can select the required edit mode in the Model Editor, as illustrated in the image below.

Tutorial_UIC_Lesson18_4

Various edit modes are illustrated in the List View Edit Modes topic (ASP.NET Web Forms-Specific Functionality section).

See Also