aspnet-devexpress-dot-web-dot-gridviewimages-fd73765f.md
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
public ImageProperties FixedGroupRow { get; }
Public ReadOnly Property FixedGroupRow As ImageProperties
| Type | Description |
|---|---|
| ImageProperties |
The image settings.
|
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
<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