Skip to main content
Tab

ASPxGridView.IsAllowGroup(GridViewColumn) Method

Indicates whether end-users can drag the specified column’s header to the group panel to group data against the column’s values.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public bool IsAllowGroup(
    GridViewColumn column
)

#Parameters

Name Type Description
column GridViewColumn

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

#Returns

Type Description
Boolean

true if end-users are allowed to drag the column’s header to the group panel; otherwise, false.

#Remarks

Data grouping requires data sorting to be performed. End-users can group data when the column’s values can be sorted. The IsAllowGroup method returns true if the ASPxGridBehaviorSettings.AllowSort and ASPxGridViewBehaviorSettings.AllowGroup properties are set to true.

See Also