Hi,
In Radzen 4.16.4 the DropDown component is not working if Enum typed data with multiple selection is used. The DropDown is rendered but it isn't possible to select any option.
The folowing snippet can be used to reproduce this behaviour:
<RadzenDropDown TValue="List<Color>"
@bind-value="@selectedColors"
Data="@allColors"
Multiple=true />
@code {
private List<Color> selectedColors = new();
private List<Color> allColors = Enum.GetValues<Color>().ToList();
private enum Color
{
Red,
Green,
Blue,
}
}
Is this a bug or is something wrong with the code?