Using material-ui autocomplete to select from about 600 items.
Is it possible to get autocomplete to offer a scrollable list of options?
You can modify the CSS of the list using listStyle...
<AutoComplete
listStyle={{ maxHeight: 200, overflow: 'auto' }}
...
/>
In the newest version of materiel ui (v4.9.11) it is possible as:
<AutoComplete
ListboxProps={{ style: { maxHeight: 200, overflow: 'auto' } }}
...
/>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With