Skip to main content

MVCxVerticalGridRow.RowType Property

Gets or sets the row data editor type.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public MVCxVerticalGridRowType RowType { get; set; }

Property Value

Type Description
MVCxVerticalGridRowType

One of the MVCxVerticalGridRowType enumeration values.

Available values:

Show 16 items
Name Description
Default

Indicates that a default editor (TextBox) is used to edit row values.

TextBox

Indicates that a text box is used to edit row values.

ButtonEdit

Indicates that a button editor is used to edit row values.

CheckBox

Indicates that a check box is used to edit and display row values.

ComboBox

Indicates that a combo box is used to edit row values.

DateEdit

Indicates that a date editor is used to edit row values.

SpinEdit

Indicates that a spin editor is used to edit row values.

TimeEdit

Indicates that a time editor is used to edit row values.

ColorEdit

Indicates that a color editor is used to edit row values.

DropDownEdit

Indicates that a drop down editor is used to edit row values.

Memo

Indicates that a memo editor is used to edit row values.

BinaryImage

Indicates that a binary image editor is used to display column values.

Image

Indicates that an image editor is used to display column values.

Indicates that a hyperlink editor is used to display row values.

ProgressBar

Indicates that a progress bar is used to visualize row values.

TokenBox

Indicates that a token box is used to edit row values.

Remarks

Use the RowType property to specify the VerticalGrid row’s data type. By default, the RowType property is set to Default. In this instance, a text box is used to edit column values.

See Also