Skip to main content
Tab

ASPxCardViewEditingSettings.Mode Property

Gets or sets a value that specifies the ASPxCardView’s editing mode.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(CardViewEditingMode.EditForm)]
public CardViewEditingMode Mode { get; set; }

Property Value

Type Default Description
CardViewEditingMode EditForm

A CardViewEditingMode enumeration value that specifies the ASPxCardView’s editing mode.

Available values:

Name Description
EditForm

Cell values are edited via the card edit form.

ASPxCardView_EditForm_Field

PopupEditForm

Cell values are edited via the popup edit form.

ASPxCardView_PopupEditFormField

Batch

Cell values are edited in the in-line editors. The changes are sent to the server only on an update (‘Save changes’) button click.

Note - the Batch Edit mode has limitations. To learn more, see the Batch Edit Mode topic.

ASPxCardView_BatchEditMode

Property Paths

You can access this nested property as listed below:

Object Type Path to Mode
ASPxCardView

Remarks

End-users can edit cell values via the edit form. Use the Mode property to specify the desired editing mode.

See Also