Skip to main content
Tab

ASPxGridViewSettings.ShowGroupedColumns Property

Specifies whether the grid displays grouped columns.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true to display the grouped columns; otherwise, false.

Property Paths

You can access this nested property as listed below:

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

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.

ASPxGridView - ShowGroupedColumns

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