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

ASPxVerticalGrid Class

Represents the ASPxVerticalGrid server control.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public class ASPxVerticalGrid :
    ASPxGridBase

Remarks

The ASPxVerticalGrid control is an inverted version of the traditional grid control, where rows represent data source fields and columns represent datasource records.

ASPxVerticalGrid-Class

Rows

The ASPxVerticalGrid control stores its rows in the ASPxVerticalGrid.Rows collection.

Rows can be automatically created for each field in the data source when the ASPxVerticalGrid is rendered, or created manually, based on the ASPxVerticalGrid.AutoGenerateRows property value. By default, the property is set to true, forcing the ASPxVerticalGrid to render each field from the data source as a row. The order of rows is the same as the order of fields in the data source.

To manually control which columns appear in the ASPxVerticalGrid, set the ASPxVerticalGrid.AutoGenerateRows property to false. In this case, you should manually add rows to the ASPxVerticalGrid.Rows collection.

Client-Side API

The ASPxVerticalGrid control provides you with comprehensive client-side functionality, implemented using JavaScript code.

The client-side API is always available for this control.

You can see a list of the main grid features in the Main Features topic.

To try the ASPxVerticalGrid control functionality, see Online Demos

See Also