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
and change it to
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
0 comments