aspnet-devexpress-dot-web-dot-gridviewimages.md
Specifies the settings of an image that indicates to which group the data row belongs.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public ImageProperties ParentGroupRows { get; }
Public ReadOnly Property ParentGroupRows As ImageProperties
| Type | Description |
|---|---|
| ImageProperties |
The image settings.
|
When the number of rows within a single group exceeds the maximum number of rows on a page, the grid displays the ParentGroupRows image within the top data row(s). This image indicates that the row belongs to a particular group. If a user hovers over this image, the control shows the tooltip with the information about the group row.
<dx:ASPxGridView ID="grid" runat="server">
<%--...--%>
<Settings ShowGroupPanel="true" />
<Images>
<ParentGroupRows Url="icon.png" />
</Images>
</dx:ASPxGridView>
See Also