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

ASPxClientGridView.ExpandRow(visibleIndex) Method

Expands the specified group row and optionally child group rows at all nesting levels.

Declaration

ExpandRow(
    visibleIndex: number,
    recursive?: boolean
): void

Parameters

Name Type Description
visibleIndex number

An integer value that identifies the group row.

recursive boolean

true to expand any child group rows at all nesting levels; false to preserve the collapsed state of any child group rows.

Remarks

To expand all group rows, call the ASPxClientGridView.ExpandAll method. To collapce the specified group row, use the ASPxClientGridView.CollapseRow method.

See Also