mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 21:49:06 +00:00
23 lines
649 B
Plaintext
23 lines
649 B
Plaintext
|
@inherits ConfigurationBase
|
||
|
@typeparam T
|
||
|
|
||
|
<MudSelectExtended
|
||
|
T="T"
|
||
|
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>
|