ASPxClientVerticalGrid.RowExpandedChanged Event
Fires on the client side after a row’s expansion state has been changed by end-user interaction.
Declaration
RowExpandedChanged: ASPxClientEvent<ASPxClientVerticalGridRowExpandedEventHandler<ASPxClientVerticalGrid>>
Event Data
The RowExpandedChanged event's data class is ASPxClientVerticalGridRowExpandedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
row | Gets the expanded row. |
Remarks
Write a RowExpandedChanged event handler to perform specific actions on the client side each time a row’s expansion state has been changed by end-user interaction. You can use the event parameter’s ASPxClientVerticalGridRowExpandedEventArgs.row property to identify the row which has been expanded or collapsed. If a row’s expansion state has been changed programmatically, the RowExpandedChanged event does not fire.
See Also