ASPxGridViewSettings.ShowGroupedColumns Property
Specifies whether the grid displays grouped columns.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.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 ShowGroupedColumns |
---|---|
ASPxGridView |
|
GridViewProperties |
|
Remarks
When the grid groups its data by the column values, it hides grouped columns. To display them, set the ShowGroupedColumns
property to true
.
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" ShowGroupedColumns="true"/>
</dx:ASPxGridView>
See Also