ASPxClientGridView.ExpandRow(visibleIndex) Method
In This Article
Expands the specified group row and optionally its child group rows at all nesting levels.
#Declaration
TypeScript
ExpandRow(
visibleIndex: number,
recursive?: boolean
): void
#Parameters
Name | Type | Description |
---|---|---|
visible |
number | The row’s visible index. |
recursive | boolean |
|
#Remarks
Call the client-side ExpandRow(visibleIndex)
or CollapseRow(visibleIndex) method to expand or collapse the specified group row.
To expand or collapse all group rows in the grid on the client side, call the ExpandAll or CollapseAll methods.
For more information on grouping in the grid, refer to the following topic: ASPxGridView - Group Data.
<dx:ASPxGridView ID="ASPxGridView1" runat="server" ClientInstanceName="grid">
<%--...--%>
<Settings ShowGroupPanel="true" />
</dx:ASPxGridView>
See Also