So i have this enum:
public enum ColorType
{
[Display(Description = "Test")]
AzureBlue,
Red,
Green,
Blue,
AlmondGreen,
[Display(Description = "Amber Gray")]
AmberGray,
[Display(Description = "Apple Blue... ")]
AppleBlueSeaGreen
}
and this dropdown:
<RadzenDropDown AllowClear="true" TValue="ColorType" Class="w-100"
FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" FilterOperator="StringFilterOperator.Contains" AllowFiltering="true"
Data=@(Enum.GetValues(typeof(ColorType)).Cast<ColorType>())
Value="@colorType"
Change=@(args => colorType = (ColorType)args) />
something weird happens it looks like the ui sees the description but the filter doesn't
images and enum attached, using .Net 7 Blazor Server Side with Radzen 4.13.5









