Skip to main content
A newer version of this page is available. .
Tab

ASPxCardViewEditingSettings.Mode Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

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:

Library Object Type Path to Mode
ASP.NET Controls and MVC Extensions ASPxCardView
CardViewSettings
CardViewSettings<CardType>
MVCxCardView
ASP.NET Bootstrap Controls BootstrapCardView

Remarks

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

See Also