axel-zarate / js-custom-select

Custom auto-complete select box for AngularJS and Bootstrap
MIT License
68 stars 59 forks source link

Can bind only upto 9 items #26

Closed Balaji-Gopal closed 8 years ago

Balaji-Gopal commented 8 years ago

I am able to bind up-to only nine items in drop down, If I give more than that it just ignores it.

axel-zarate commented 8 years ago

Did you check whether that limit is imposed by any filter you might be applying? In the demo page, the second select element is bound to an array containing 59 states and they all show properly.

Balaji-Gopal commented 8 years ago

There is no limit has been imposed,I am using it for cordova mobile application,Since the mobile device has less screen space it is rendering only up-to 9 elements only,I want to make it scrollable.

Even thought I have given the overflow:auto /overflow-x:scroll/overflow-y:scroll,I am not able to make it scrollable.