Supplies information about a RadzenDataGrid<T> event that is being raised.
Object
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public class RowRenderEventArgs<T>| Name | Description |
|---|---|
| T | The data item type. |
Supplies information about a RadzenDataGrid<T> event that is being raised.
public RowRenderEventArgs<T>()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; }
| Type | Description |
|---|---|
| IDictionary<string, object> | Gets or sets the row HTML attributes. They will apply to the table row (tr) element which RadzenDataGrid renders for every row. |
Gets the data item which the current row represents.
public T Data { get; }
| Type | Description |
|---|---|
| T | Gets the data item which the current row represents. |
Gets or sets a value indicating whether this row is expandable.
public bool Expandable { get; set; }
| Type | Description |
|---|---|
| bool | Gets or sets a value indicating whether this row is expandable. |
Gets or sets a value indicating row index.
public int Index { get; set; }
| Type | Description |
|---|---|
| int | Gets or sets a value indicating row index. |