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

GridViewDataColumn.GroupIndex Property

Gets or sets a value that specifies whether the column takes part in grouping and at which level.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(-1)]
public int GroupIndex { get; set; }

Property Value

Type Default Description
Int32 -1

An integer value that specifies the column’s position among grouping columns. -1 if the ASPxGridView isn’t grouped by the values of the current column.

Remarks

The ASPxGridView supports data grouping by an unlimited number of data columns. To group data by the values of a given column, set the column’s GroupIndex property to a non-negative integer. If several columns are involved in grouping, the GroupIndex property specifies the grouping level. If set to 0, the column is at the root grouping level. Changing the GroupIndex property’s value updates this property value for other columns involved in grouping.

To cancel grouping by the column’s values, set the GroupIndex property to -1 or call the GridViewDataColumn.UnGroup method.

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

Example

The example demonstrates how to use custom grouping rules to group records by their first letters (the CustomColumnGroup event). The code in the BeforeColumnSortingGrouping event handler, is used to show an invisible column to demonstrate rows which are grouped.

View Example

using DevExpress.Web.ASPxGridView;

public partial class _Default : System.Web.UI.Page {
    protected int GetGroupNumber(string str) {
        str = str.ToLower();
        char ch = str[0];
        int i = Convert.ToInt32(ch);

        if (ch >= 'a' && ch <= 'e') return 1;
        if (ch >= 'f' && ch <= 'j') return 2;
        if (ch >= 'k' && ch <= 'q') return 3;
        if (ch >= 'r' && ch <= 'v') return 4;
        if (ch >= 'x' && ch <= 'z') return 5;

        return -1;
    }

    protected void grid_CustomColumnGroup(object sender, DevExpress.Web.ASPxGridView.CustomColumnSortEventArgs e) {
        if (e.Column.Name != "VisibleProductName") return;

        int res1 = GetGroupNumber(e.GetRow1Value(e.Column.FieldName).ToString());
        int res2 = GetGroupNumber(e.GetRow2Value(e.Column.FieldName).ToString());

        int res = res1 - res2;

        if (res < 0)
            res = 1;
        else if (res > 0)
            res = -1;

        e.Result = res;
        e.Handled = true;
    }

    protected void grid_CustomGroupDisplayText(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewColumnDisplayTextEventArgs e) {
        int ind = GetGroupNumber(e.Value.ToString());
        switch (ind) {
            case 1: e.DisplayText = "A-E"; break;
            case 2: e.DisplayText = "F-J"; break;
            case 3: e.DisplayText = "K-Q"; break;
            case 4: e.DisplayText = "R-V"; break;
            case 5: e.DisplayText = "X-Z"; break;
        }
    }

    protected void grid_BeforeColumnSortingGrouping(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewBeforeColumnGroupingSortingEventArgs e) {
        if (e.Column.Name == "VisibleProductName")
            grid.Columns["InvisibleProductName"].Visible = ((grid.Columns["VisibleProductName"] as GridViewDataColumn).GroupIndex != -1);
    }
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GroupIndex property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also