jQueryUI Autocomplete ComboBox Too Long

前端 未结 6 1514
攒了一身酷
攒了一身酷 2020-12-24 05:37

My jQuery UI AutoComplete ComboBox doesn\'t have a scrollbar on the right side and gets very, unfortuantely, long as shown below. I\'d like to restrain this list to a reason

6条回答
  •  情话喂你
    2020-12-24 06:01

    Start looking into the CSS. Most likely the drop down list is a select or ul. If the drop down is enclosed within a DIV, add "overflow:auto", that will give it a scroll bar. Or set the max height to the div. Another solution would be putting a limit on the results. Just don't populate the box with that many entries.

提交回复
热议问题