Hello, I have a rather long list of items (> 400) that users will multiselect from.
I was hoping the TelerikMultiSelect control would work for this, as it's the only Blazor control I've found so far that comes close to providing the required functionality.
However, it doesn't seem to be rendering properly, and it doesn't provide a way to scroll beyond one page worth of data.
First of all, it only draws the "drop down" for 8 items, even though the list renders far beyond the drop down, causing a poor visual rendition of the list. This is just a snippet, as the list goes down beyond the bottom of the browser page:
The component should know how long to render the "drop down" based on the number of items in the list? I tried setting a MinHeight, which increased the length of the list, but that only changed where the visual cutoff occurs, as it still cuts off.
Secondly, there's no way to scroll beyond one page worth. When the control scrolls off the page in the browser, the list collapses, making it impossible to scroll even to the 'Bs'.
I think I can make this work by making use of filters and setting the MinHeight so that it extends beyond the controls below it, however this doesn't seem like the right way to do it.
I'm open to other ideas.
Thanks!