Skip to main content
Tab

GridViewImages.ParentGroupRows Property

Specifies the settings of an image that indicates to which group the data row belongs.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ImageProperties ParentGroupRows { get; }

Property Value

Type Description
ImageProperties

The image settings.

Remarks

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.

ASPxGridView - ParentGroupRow

<dx:ASPxGridView ID="grid" runat="server">
    <%--...--%>
    <Settings ShowGroupPanel="true" />
    <Images>
        <ParentGroupRows Url="icon.png" />
    </Images>
</dx:ASPxGridView>
See Also