ASPxGridViewBehaviorSettings.AutoExpandAllGroups Property
Specifies whether the grid automatically expands all group rows.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v25.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | false |
|
Property Paths
You can access this nested property as listed below:
| Object Type | Path to AutoExpandAllGroups |
|---|---|
| ASPxGridView |
|
| GridViewProperties |
|
Remarks
If the AutoExpandAllGroups property is set to true, the grid automatically expands all group rows on the first grid load and after each grouping operation.
For more information on grouping in the grid, refer to the following topic: ASPxGridView - Group Data.
<dx:ASPxGridView ID="ASPxGridView1" runat="server" ClientInstanceName="grid">
<%--...--%>
<SettingsBehavior AutoExpandAllGroups="true" />
<Settings ShowGroupPanel="true" />
</dx:ASPxGridView>
See Also