Pages

Thursday, 22 September 2016

How to show done button for select tag in IOS In ionic

Hello All,
here i am once again with issue which have taken my 4 hours to solve .

in IOS select tag was not showing the done button,

So here is the solution.

By default in your app.js in .run() the hideKeyboardAccessoryBar is set to true, so just find

if (window.cordova && window.cordova.plugins.Keyboard) {
  window.cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}

and change it to


if (window.cordova && window.cordova.plugins.Keyboard) {
  window.cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
}


Hope this helps you too ,till then keep asking 

No comments:

Post a Comment