GridViewStyles.FocusedGroupRow Property
In This Article
Specifies the appearance of the focused group row.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public GridViewGroupRowStyle FocusedGroupRow { get; }
#Property Value
Type | Description |
---|---|
Grid |
Style settings that specify the appearance of the focused group row. |
#Remarks
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.
#Markup Example
#CSS Example
#ASPxGridView1 .focusedGroupRowStyle td{
background-color: Brown;
}
See Also