Skip to main content
Tab

ASPxGridViewBehaviorSettings.AutoExpandAllGroups Property

Specifies whether the grid automatically expands all group rows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool AutoExpandAllGroups { get; set; }

Property Value

Type Default Description
Boolean false

true to expand all group rows; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to AutoExpandAllGroups
ASPxGridView
.SettingsBehavior .AutoExpandAllGroups
GridViewProperties
.SettingsBehavior .AutoExpandAllGroups

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