I have this ui-select on my code. I am building a mobile app with Ionic and AngularJS.
<ui-select name="org" ng-model="user.org.selected" theme="selectize" class="form-control ng-pristine ng-invalid ng-invalid-required" style="margin-top: -5px; margin-left: 7px;" required>
<ui-select-match placeholder="Organization Name" focus-me="true">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="item in rea_list | filter: $select.search |limitTo: 20" position="down">
<div ng-bind-html="item.name | highlight: $select.search"></div>
</ui-select-choices>
</ui-select>
When i put this code on an ionicPopup, i can scroll the list of options to view the 20 options in the list but if i put this code on my ion-view on a page or in an ionicModal, i cant scroll through the 20 options.
I have no clue why this is so and I cant figure out a way to solve it too. It works perfectly on web but it doesnt work on mobile device.