Skip to main content
Tab

CardViewCommandButtonSettings.ButtonType Property

OBSOLETE

Use the RenderMode property instead.

Specifies the button type that is used to render the current command button.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(GridCommandButtonRenderMode.Default)]
[Obsolete("Use the RenderMode property instead.")]
public GridCommandButtonRenderMode ButtonType { get; set; }

Property Value

Type Default Description
GridCommandButtonRenderMode Default

One of the GridCommandButtonRenderMode enumeration values.

Available values:

Name Description
Default

The command item render mode depends on the command column’s and grid settings. If these settings are set to Default, the command button is rendered as a link.

The command item is rendered as a link.

ButtonType_Link

Image

The command item is rendered as an image.

ButtonType_Image

Button

The command item is rendered as a button.

ButtonType_Button

Danger

The button indicates a dangerous or potentially negative action.

CommandButton - Danger

Outline

A button with a colored border and without a background color.

CommandButton - Outline

Secondary

A button of secondary importance.

CommandButton - Secondary

Property Paths

You can access this nested property as listed below:

Object Type Path to ButtonType
ASPxCardViewCommandButtonSettings
.CancelButton .ButtonType
ASPxCardViewCommandButtonSettings
.DeleteButton .ButtonType
ASPxCardViewCommandButtonSettings
.EditButton .ButtonType
ASPxCardViewCommandButtonSettings
ASPxCardViewCommandButtonSettings
.NewButton .ButtonType
ASPxCardViewCommandButtonSettings
.RecoverButton .ButtonType
ASPxCardViewCommandButtonSettings
.SearchPanelApplyButton .ButtonType
ASPxCardViewCommandButtonSettings
.SearchPanelClearButton .ButtonType
ASPxCardViewCommandButtonSettings
.SelectButton .ButtonType
ASPxCardViewCommandButtonSettings
.UpdateButton .ButtonType
ASPxCardViewCommandButtonSettings
.UpdateSummariesButton .ButtonType

Remarks

Use the ButtonType property to specify which button type is used to render the command button. The type of button can be specified by the CardViewCommandButtonSettings.ButtonType property.

The Default value corresponds to the Link value.

See Also