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

Hi there, I'm using the multi-select dropdown control, and I'm wanting to select a list of integers.

In my case I've inherited a sytem/database where the id types can be different bit integers (short [int16], int [int32], long [int64]).

Your regular single select dropdown seems quite happy with any of these integer types, but the multi-select only seems to bind to int32, and isn't binding to a short[] when I try it.

Could it be expanded to work with short[], int[] and long[] as the regular dropdown does? Save having to use conversion code to use this control. I'd also suggest Guid[] as that's quite a common ID type.


In addition to the above, it would add to the versatility of the control if you could bind to a wider set of types than an array. If it supported something generic like IEnumerable<int/string etc> you could bind the control to a List<string> for example rather than array conversions.

Another suggestion would be to support binding to a list of the same type as TItem. So if TItem was 'MyListItem', the selection of TValue could be List<MyListItem>.