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

GridViewImages.FixedGroupRow Property

Specifies the settings of an image that indicates the fixed group row.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public ImageProperties FixedGroupRow { get; }

Property Value

Type Description
ImageProperties

The image settings.

Remarks

ASPxGridView allows you to fix a top group row when a user scrolls data rows. Set the AllowFixedGroups property to true to enable this functionality.

To indicate the fixed group row, the grid displays a special image within this row. Specify the FixedGroupRow property to customize this image.

For more information on grouping in the grid, refer to the following topic: ASPxGridView - Group Data.

Run Demo: ASPxGridView - Fixed Groups

FixedGroups

<dx:ASPxGridView ID="Grid" ClientInstanceName="grid" runat="server" KeyFieldName="CustomerID"
    AutoGenerateColumns="false">
    <Columns>
        <%--..--%>
        <dx:GridViewDataColumn FieldName="Country" GroupIndex="0" />
    </Columns>
    <Settings ShowGroupPanel="True" VerticalScrollBarMode="Visible" VerticalScrollableHeight="300" />
    <SettingsBehavior AllowFixedGroups="true" />
    <Images>
        <FixedGroupRow Url="custom.png" />
    </Images>
</dx:ASPxGridView>
See Also