Back to Devexpress

GridViewImages.FixedGroupRow Property

aspnet-devexpress-dot-web-dot-gridviewimages-fd73765f.md

latest2.3 KB
Original Source

GridViewImages.FixedGroupRow Property

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

Namespace : DevExpress.Web

Assembly : DevExpress.Web.v25.2.dll

NuGet Package : DevExpress.Web

Declaration

csharp
public ImageProperties FixedGroupRow { get; }
vb
Public ReadOnly Property FixedGroupRow As ImageProperties

Property Value

TypeDescription
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

aspx
<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

GridViewImages Class

GridViewImages Members

DevExpress.Web Namespace