ASPxGridView.IsAllowGroup(GridViewColumn) Method
In This Article
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 | Grid |
A Grid |
#Returns
Type | Description |
---|---|
Boolean |
|
#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