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

ASPxClientCardView.ColumnGrouping Event

Enables you to handle each column grouping.

Declaration

ColumnGrouping: ASPxClientEvent<ASPxClientCardViewColumnCancelEventHandler<ASPxClientCardView>>

Event Data

The ColumnGrouping event's data class is ASPxClientCardViewColumnCancelEventArgs. The following properties provide information specific to this event:

Property Description
cancel Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs.
column Gets the processed client column.

Remarks

The card view supports grouping cards by an unlimited number of data columns. The ColumnGrouping event is raised before the ASPxCardView’s cards are grouped and allows you to cancel the grouping operation. The event parameter’s column property identifies the processed client column. To cancel the current operation, set the cancel property to true.

See Also