Represents the common RadzenCheckBoxListItem<T> API used by RadzenCheckBoxList<T> regardless of the item value type. Allows items whose declared value type differs from the list value type (e.g. int items in a int? list).
Namespace: Radzen
Assembly: Radzen.Blazor.dll
public interface IRadzenCheckBoxListItemGets 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 a value indicating whether the item is read only.
public bool ReadOnly { get; }
| Type | Description |
|---|---|
| bool | Gets a value indicating whether the item is read only. |
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 |