Answer the question
In order to leave comments, you need to log in
How to configure Selectize.js to work on iOS and not throw away the keyboard on mobile devices?
How to configure Selectize.js to work on iOS and not throw away the keyboard on mobile devices?
Works everywhere except iOS, but on mobile it throws out the keyboard
Tried:<select selectize="vm.pks" change="pk"></select>
<select selectize="vm.pks" change="pk" search-enabled="false" type="text" readonly></select>
<select>
<option ng-repeat="pk in vm.pks" ng-click="vm.changePk(pk)" value="{active: pk === vm.currentPK}" >{{pk}}</option>
</select>
<button"
ng-repeat="pk in vm.pks"
ng-click="vm.changePk(pk)"
ng-class="{active: pk === vm.currentPK}"
>{{pk}}</button>
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question