Issue with FilterMode.SimpleWithMenu

Hi Radzen Community

When adding a FilterMode.SimpleWithMenu getting an issue with the @Enum.GetName(context)
the browser give an error and the options / enum values do not load in the dropdown. Only the initialized value shows in the Dropdown

Any help will be greatly appreciated.
Cheers
RB

I think you are missing a cast. Enum.GetValues returns the underlying type (int) and thus the Context of the template is int too.

Enum.GetValues(typeof(Enum)).Cast<Enum>() should work fine.