Skip to main content
Tab

ASPxGridViewSettings.ShowGroupPanel Property

Specifies whether the grid displays the Group Panel.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true to display the group panel; otherwise, false

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowGroupPanel
ASPxGridView
.Settings .ShowGroupPanel
GridViewProperties
.Settings .ShowGroupPanel

Remarks

When the ShowGroupPanel property is set to true, a user can drag a column header to the Group Panel to group data by the column values.

For more information on grouping in the grid, refer to the following topic: ASPxGridView - Group Data.

Run Demo: ASPxGridView - Grouping Data

ASPxGridView - ShowGroupPanel

<dx:ASPxGridView ID="grid" runat="server">
    <%--...--%>
    <Settings ShowGroupPanel="true" />
</dx:ASPxGridView>
See Also