Pixabay / jQuery-tagEditor

A powerful and lightweight tag editor plugin for jQuery.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Limit the no. of available options in dropdown?

opened this issue · comments

I want to use this tag for language form filling. Now I already have a database with almost all the available languages. The problem I am facing right now is, the list is so big that, if someone types "a", he will see the whole list of options available.

Is there a way to limit the no. of results to be shown. And better if the dropdown has a scroll if the no. of results exceeds that limit?

In CSS file update:

.ui-autocomplete { position: absolute; top: 0; left: 0; cursor: default; font-size: 14px; max-height: 300px; overflow: auto;}

And you are good to go (y)