ASPxGridViewSettings.ShowGroupPanel Property
Specifies whether the grid displays the Group Panel.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Property Paths
You can access this nested property as listed below:
Object Type | Path to ShowGroupPanel |
---|---|
ASPxGridView |
|
GridViewProperties |
|
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.
<dx:ASPxGridView ID="grid" runat="server">
<%--...--%>
<Settings ShowGroupPanel="true" />
</dx:ASPxGridView>
See Also