OK button not showing in <select> tag in Ionic app

I am developing an Ionic application, and for some reason, when I use the tag, the "Ok" button does not appear - please see the screenshot below.

I am using <select> with <option> inside.

Any idea what could happen?

enter image description here

+5
source share
1 answer

Have you tried to do this?

 .run(function($ionicPlatform) { $ionicPlatform.ready(function() { // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard // for form inputs) if(window.cordova && window.cordova.plugins.Keyboard) { //Change this to false to return accessory bar cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false); } if(window.StatusBar) { // org.apache.cordova.statusbar required StatusBar.styleDefault(); } }); }); 

According to this , this code can return your keyboard accessories.

+5
source

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


All Articles