bootstrap-autocomplete icon indicating copy to clipboard operation
bootstrap-autocomplete copied to clipboard

[New feature] Scrolling the results

Open sant527 opened this issue 7 years ago • 2 comments

I am able to show the list of matched items in the drop down box. But when the matched elements are long how to show them like a scroll view.

sant527 avatar Oct 05 '18 12:10 sant527

Scrolling results is generally bad UX in an autocomplete component. But this feature is on the list to be implemented.

xcash avatar Nov 30 '18 10:11 xcash

i was able to achieve this with css, although it doesn't scroll with the arrow keys, but scroll does work with mouse wheel and the bar shows, im sure some js can be accomplished to scroll on active selection

.bootstrap-autocomplete.dropdown-menu{
    max-height: 200px;
    overflow-y: scroll;
}

bmatusiak avatar Jul 13 '19 16:07 bmatusiak