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

ASPxClientGridView.ColumnGrouping Event

Enables you to cancel data grouping.

Declaration

ColumnGrouping: ASPxClientEvent<ASPxClientGridViewColumnCancelEventHandler<ASPxClientGridView>>

Event Data

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

Property Description
cancel Gets or sets a value indicating whether the action which raised the event should be canceled. Inherited from ASPxClientCancelEventArgs.
column Gets the processed client column.

Remarks

The ASPxGridView supports grouping data by an unlimited number of data columns. The ColumnGrouping event is raised before the ASPxGridView’s data is 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