bentorfs / angular-bootstrap-multiselect

Native angularJS custom form element
http://bentorfs.github.io/angular-bootstrap-multiselect/
MIT License
79 stars 111 forks source link

scroll bar #56

Open gauravBrain opened 7 years ago

gauravBrain commented 7 years ago

How to display a scroll bar for large number of records.

bentorfs commented 7 years ago

It's currently not possible. You'll have to contribute it yourself if you want it.

vqanguyen commented 7 years ago

This is exactly what i want.

vqanguyen commented 7 years ago

i modified some codes, and it works fine now.

Mattie112 commented 6 years ago

I know this is old but it can help other people.

To add a scrollbar simply add the following to your CSS:

.dropdown-menu { max-height: 350px; }

When there are more items (can be limited by search-limit) then the available 350px a scrollbar will be added.

image