Represents the common RadzenRadioButtonListItem<T> API used by RadzenRadioButtonList<T> regardless of the item value type. Allows items whose declared value type differs from the list value type (e.g. bool items in a bool? list).
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public interface IRadzenRadioButtonListItemGets the custom attributes rendered by the item.
public IReadOnlyDictionary<string, object> Attributes { get; }
| Type | Description |
|---|---|
| IReadOnlyDictionary<string, object> | Gets the custom attributes rendered by the item. |
Gets a value indicating whether the item is disabled.
public bool Disabled { get; }
| Type | Description |
|---|---|
| bool | Gets a value indicating whether the item is disabled. |
Gets or sets the item element reference.
public ElementReference Element { get; set; }
| Type | Description |
|---|---|
| ElementReference | Gets or sets the item element reference. |
Gets the custom attributes rendered by the input.
public IReadOnlyDictionary<string, object> InputAttributes { get; }
| Type | Description |
|---|---|
| IReadOnlyDictionary<string, object> | Gets the custom attributes rendered by the input. |
Gets the style.
public string Style { get; }
| Type | Description |
|---|---|
| string | Gets the style. |
Gets the item template.
public RenderFragment Template { get; }
| Type | Description |
|---|---|
| RenderFragment | Gets the item template. |
Gets the text.
public string Text { get; }
| Type | Description |
|---|---|
| string | Gets the text. |
Gets the value.
public object Value { get; }
| Type | Description |
|---|---|
| object | Gets the value. |
Gets a value indicating whether the item is visible.
public bool Visible { get; }
| Type | Description |
|---|---|
| bool | Gets a value indicating whether the item is visible. |
Gets the item CSS class.
public abstract string GetItemCssClass()
| Type | Description |
|---|---|
| string |
Gets the item id.
public abstract string GetItemId()
| Type | Description |
|---|---|
| string |