Scrollable dropdown for multi-select search field

1
I have a search field on a datagrid which shows the name of the Customer associated to an Order. In the settings of this Drop-down search field, I can set Allow multi-select to Yes or No. If the setting is NO: a scrollable drop-down list will be shown when selecting a customer. If the setting is YES: the list will show checkmarks to select the customers I want to see orders from, but this list is no longer scrollable and therefor all customers are shown in one long list. My question is: are there other solutions for having a multi-select dropdown search field that are more screen-friendly?
asked
1 answers
4

You can adjust this using CSS. Add this to your app’s styling:

.dropdown-menu {
    max-height: 200px;
    overflow-y: auto;
}

Adjust the height to whatever you prefer.

answered