The <select> tag does not work on some Android devices in ionic

So, the selection box does not work on an Android device (for example, galaxy s6). I use an ionic structure. When I press the select button, nothing appears, but if I click on it (it is very difficult), an option will be displayed. how do i know this is an ionic error .. any solutions? this image in advance in the selection window and this menu of options

        <div class="list list-language">
            <label class="item item-input item-icon-left item-select">
                <div class="input-label">
                    <i class="flag {{ $root.locale }}"></i>
                    <i class="icon icon-arrow-right-alt"></i>
                </div>
                <select ng-model="$root.locale" ng-change="vm.changeLocale($root.locale)" tabindex="-1">
                    <option ng-selected="$root.locale == 'en'" value="en">{{ 'ENGLISH' | translate }}</option>
                    <option ng-selected="$root.locale == 'ka'" value="ka">{{ 'GEORGIAN' | translate }}</option>
                    <option ng-selected="$root.locale == 'ru'" value="ru">{{ 'RUSSIAN' | translate }}</option>
                </select>
            </label>
        </div>
+4
source share
2 answers

data-tap-disabled select. . , .

+5

, , label label wrap select. smth else, , div. div span.

HTML <label> <div>.

0

Source: https://habr.com/ru/post/1653450/


All Articles