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

ASPxClientCardView.GroupBy(column) Method

Groups cards by the values of the specified column.

Declaration

GroupBy(
    column: ASPxClientCardViewColumn | number | string,
    groupIndex?: number,
    sortOrder?: string
): void

Parameters

Name Type Description
column ASPxClientCardViewColumn | number | string

An ASPxClientCardViewColumn object that represents the card view column.

groupIndex number

An integer value that specifies the grouping level. -1 to cancel grouping by the column’s values.

sortOrder string

A string value that specifies the column’s sort order.

Remarks

The ASPxCardView supports grouping by an unlimited number of columns. The GroupBy method groups cards by the values of the specified column.

Cards are always sorted against the grouping columns. If cards are grouped against a column which isn’t sorted, the card view automatically applies sorting in ascending order to the column.

Data grouping is allowed if the ASPxCardViewBehaviorSettings.AllowGroup and ASPxGridBehaviorSettings.AllowSort properties are set to true.

See Also