Skip to main content
Tab

ASPxCardView.IsAllowGroup(CardViewColumn) Method

Indicates whether the specified column is displayed within the group selector and an end user can group cards by this column.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public bool IsAllowGroup(
    CardViewColumn column
)

Parameters

Name Type Description
column CardViewColumn

A CardViewColumn object that represents the column within the ASPxCardView.

Returns

Type Description
Boolean

true, if the group selector contains the specified column and end user can group cards by this column; otherwise, false.

Remarks

The ASPxCardView supports grouping by an unlimited number of columns. The IsAllowGroup 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