You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
416 B
20 lines
416 B
2 years ago
|
@namespace Connected.Components
|
||
|
@typeparam T
|
||
|
@inherits SelectItemBase
|
||
|
|
||
|
@if (HideContent == false)
|
||
|
{
|
||
|
<ListItem @attributes="UserAttributes" Value="@ItemId" id="@ItemId" OnClick="@OnClicked" OnClickHandlerPreventDefault="true" Icon="@CheckBoxIcon" Disabled="@Disabled" Class="@GetCssClasses()" Style="@Style">
|
||
|
@if (ChildContent != null)
|
||
|
{
|
||
|
@ChildContent
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
@DisplayString
|
||
|
}
|
||
|
</ListItem>
|
||
|
}
|
||
|
|
||
|
|