Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Consider the following scenario:

I have a EjsMultiSelect component bound to a ICollection<ItemEnum> collection using Value="@SelectedItemKeys". ItemEnum is an enumeration. The collection contains one pre-selected value.

Expected
The
EjsMultiSelect contains one selected item (the one I pre-selected).

Actual

The EjsMultiSelect
seems to be aware of the pre-selected item however, there is a couple of issues:


The checkbox of the selected item is not checked.

The selected item appears more than one time in the list.
Each time the list is expanded, new instances of the selected item are appended to the list.


I don't have the issue when I use an integer instead of an enumeration.


I am attaching a demo project to illustrate the problem.