-
-
Notifications
You must be signed in to change notification settings - Fork 426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
limit size of select menu #327
Comments
Currently, you can't limit the number of items displayed in the select menu. Which library are you using? Depending on which one you're using you may be able to override the default behavior and implement your own menu. |
Thanks for replying. I am using the css/js library, not React. |
Can you use the browser's built-in select menu? If so you can enable it using the <div class="mui-select mui-select--use-default">
<select>
<option selected>A</option>
<option>B</option>
<option>C</option>
</select>
<label>Label</label>
</div> |
that works. thanks |
Hi
apologies if I should be posting this elsewhere.
Just wanted to ask if there's a way to limit the number of items displayed in the select menu?
Currently it defaults to showing as many as will fit on screen.
Thanks
The text was updated successfully, but these errors were encountered: