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.
Connected.Components/Components/Select/SelectItem.razor

20 lines
416 B

@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>
}