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

VerticalGridCommandRow.ButtonRenderMode Property

Specifies the render mode of the command buttons for the current command row.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(GridCommandButtonRenderMode.Default)]
public GridCommandButtonRenderMode ButtonRenderMode { 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

Remarks

Use the ButtonRenderMode property to specify which mode will be used to render command buttons in the current command row. If the property is set to Default, the row button type depends upon the ASPxVerticalGridCommandButtonSettings.RenderMode property value.

The render mode of a particular command button type can be specified by the ASPxVerticalGrid.SettingsCommandButton._command_button_name_.Render property (GridCommandButtonSettings.RenderMode).

See Also