Hi,
I am using select element. It has issue for iOS, it does not show done button. Same issue is for input type=date element.
How can we handle it on iOS.
I tried by making
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false); //by default it was true.. set to false to show confirm butotn for select element on ios
cordova.plugins.Keyboard.disableScroll(true);
}
But of No luck. Any resolution for this?