aspnet-devexpress-dot-web-dot-gridviewstyles-a37c99d5.md
Specifies the appearance of the focused group row.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public GridViewGroupRowStyle FocusedGroupRow { get; }
Public ReadOnly Property FocusedGroupRow As GridViewGroupRowStyle
| Type | Description |
|---|---|
| GridViewGroupRowStyle |
Style settings that specify the appearance of the focused group row.
|
Set the AllowFocusedRow property to true to enable row focus.
When row focus is disabled, the style settings of the focused group row are not in effect.
The FocusedGroupRow property allows you to specify the appearance of the focused group row in markup and in a CSS class.
<dx:ASPxGridView ID="ASPxGridView1" >
<%--...--%>
<Styles>
<FocusedGroupRow BackColor="Brown" ForeColor="Yellow" >
</FocusedGroupRow>
</Styles>
</dx:ASPxGridView>
#ASPxGridView1 .focusedGroupRowStyle td{
background-color: Brown;
}
<dx:ASPxGridView ID="ASPxGridView1" >
<%--...--%>
<Styles>
<FocusedRow CssClass="focusedGroupRowStyle" />
</Styles>
</dx:ASPxGridView>
See Also