Table of Contents

Class RowRenderEventArgs<T>

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Supplies information about a RadzenDataGrid<TItem> event that is being raised.

public class RowRenderEventArgs<T>

Type Parameters

T
Inheritance
RowRenderEventArgs<T>
Derived
Inherited Members

Constructors

RowRenderEventArgs()

public RowRenderEventArgs()

Properties

Attributes

Gets or sets the row HTML attributes. They will apply to the table row (tr) element which RadzenDataGrid renders for every row.

public IDictionary<string, object> Attributes { get; }

Property Value

IDictionary<string, object>

Data

Gets the data item which the current row represents.

public T Data { get; }

Property Value

T

Expandable

Gets or sets a value indicating whether this row is expandable.

public bool Expandable { get; set; }

Property Value

bool

true if expandable; otherwise, false.