aspnet-devexpress-dot-web-dot-aspxgridviewsettings-de6596b2.md
Specifies whether the grid displays grouped columns.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool ShowGroupedColumns { get; set; }
<DefaultValue(False)>
Public Property ShowGroupedColumns As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to display the grouped columns; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to ShowGroupedColumns |
|---|---|
| ASPxGridView |
.Settings .ShowGroupedColumns
| | GridViewProperties |
.Settings .ShowGroupedColumns
|
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