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

ASPxClientGridView.RowCollapsing Event

Fires before a group row is collapsed.

Declaration

RowCollapsing: ASPxClientEvent<ASPxClientGridViewRowCancelEventHandler<ASPxClientGridView>>

Event Data

The RowCollapsing event's data class is ASPxClientGridViewRowCancelEventArgs. 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.
visibleIndex Gets the processed row’s visible index.

Remarks

Handle the RowCollapsing event to specify whether the group row is allowed to be collapsed. To cancel this action, set the event parameter’s cancel property to true.

See Also