aspnet-devexpress-dot-web-dot-aspxgridviewsettings.md
Specifies whether the grid displays the Group Panel.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool ShowGroupPanel { get; set; }
<DefaultValue(False)>
Public Property ShowGroupPanel As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to display the group panel; otherwise, false
|
You can access this nested property as listed below:
| Object Type | Path to ShowGroupPanel |
|---|---|
| ASPxGridView |
.Settings .ShowGroupPanel
| | GridViewProperties |
.Settings .ShowGroupPanel
|
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
<dx:ASPxGridView ID="grid" runat="server">
<%--...--%>
<Settings ShowGroupPanel="true" />
</dx:ASPxGridView>
See Also