2024-12-03 20:02:37 +00:00
|
|
|
@inherits ConfigurationBase
|
2025-04-27 07:06:05 +00:00
|
|
|
@typeparam TData
|
2024-12-03 20:02:37 +00:00
|
|
|
|
|
|
|
<MudSelectExtended
|
2025-04-27 07:06:05 +00:00
|
|
|
T="TData"
|
2024-12-03 20:02:37 +00:00
|
|
|
MultiSelection="@true"
|
|
|
|
MultiSelectionTextFunc="@this.GetMultiSelectionText"
|
|
|
|
SelectedValues="@this.SelectedValues()"
|
|
|
|
Strict="@true"
|
|
|
|
Disabled="@this.Disabled()"
|
|
|
|
Margin="Margin.Dense"
|
|
|
|
Label="@this.OptionDescription"
|
|
|
|
Class="@GetClass"
|
|
|
|
Variant="Variant.Outlined"
|
|
|
|
HelperText="@this.OptionHelp"
|
|
|
|
SelectedValuesChanged="@this.OptionChanged">
|
|
|
|
@foreach (var data in this.Data)
|
|
|
|
{
|
|
|
|
<MudSelectItemExtended Value="@data.Value">
|
|
|
|
@data.Name
|
|
|
|
</MudSelectItemExtended>
|
|
|
|
}
|
|
|
|
</MudSelectExtended>
|