Class GroupRowRenderEventArgs
- Namespace
- Radzen
- Assembly
- Radzen.Blazor.dll
Supplies information about a RadzenDataGrid<TItem> event that is being raised.
public class GroupRowRenderEventArgs
- Inheritance
-
GroupRowRenderEventArgs
- Inherited Members
Constructors
GroupRowRenderEventArgs()
public GroupRowRenderEventArgs()
Properties
Attributes
Gets or sets the group row HTML attributes. They will apply to the table row (tr) element which RadzenDataGrid renders for every group row.
public IDictionary<string, object> Attributes { get; }
Property Value
Expanded
Gets or sets a value indicating whether this group row is expanded.
public bool? Expanded { get; set; }
Property Value
- bool?
true
if expanded; otherwise,false
.
FirstRender
Gets a value indicating whether this is the first time the RadzenGrid has rendered.
public bool FirstRender { get; }
Property Value
- bool
true
if this is the first time; otherwise,false
.
Group
Gets the data item which the current row represents.
public Group Group { get; }