Skip to main content
A newer version of this page is available. .
Tab

ASPxGridView.UnGroup(GridViewColumn) Method

Ungroups data by the values of the specified column.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public void UnGroup(
    GridViewColumn column
)

Parameters

Name Type Description
column GridViewColumn

A GridViewColumn descendant that represents the data column within the ASPxGridView.

Remarks

The ASPxGridView supports grouping data by an unlimited number of data columns. The UnGroup method cancels data grouping by the values of the specified column.

To group data by a column, use the ASPxGridView.GroupBy method or the column’s GridViewDataColumn.GroupBy method.

Data grouping is allowed if the ASPxGridViewBehaviorSettings.AllowGroup and ASPxGridBehaviorSettings.AllowSort properties are set to true.

See Also