autocomplete - Typeahead.js, scrollbar and keyboard event -
i try use "typeahead.js" in project high keyboard interactivity.
i use lib purpose input suggestions users. there lot of results , suggestion list scrollable (with css):
.tt-suggestions { height: 124px !important; overflow-y: auto !important; }
but when use keyboard, list doesn't scroll although this evolution has been merged.
is bug or wrong ? don't find example on web.
thanks.
apply styles .tt-dropdown-menu
(!important
won't necessary):
.tt-dropdown-menu { height: 124px; overflow-y: auto; }
Comments
Post a Comment