I am creating a autocomplete textbox for a application for touch screen device jquery autocomlete. The scrollbar in the autocomplete is not so user friendly so i was suppose to give another option. Is it possible to include Next/Prev button inside autocomplete? or Is there any other good option for this issue?
Geetha.
As far as I know there is no easy method to do paging in jquery autocomplete. As you don’t want to show the scrollbar, you can specify the
maxandscrollHeightproperties such that it will show enough options without any scrollbar. Heremaxis the maximum number of results it will show.If you desperately want paging, why don’t you use Jquery FlexBox. In Flexbox you can implement paging very easily.
As flexbox by default shows the arrow sign on the right of the input box, you need to set
showArrowtofalseto remove that and make it look like an autocomplete rather than a combobox. HerepageSizespecifies the maximum number of result per page.