Keyboard <> and Done items

Hi

Brand new here - please be kind…

I’ve created a form page, all going well for iOS - but the virtual keyboard does not include the Tab < > and Done buttons.

Could someone point me in the right direction?

Thank you

In your config.xml set HideKeyboardFormAccessoryBar to false.
<preference name=“HideKeyboardFormAccessoryBar” value=“false” />

Hi

For some reason, placing that line in config.xml did not work… so I disabled it in keyboard.js - which did the job.

Many thanks for the assist

Hey there, so if the project started off from our CLI, it’s because we’re disabling it in a run function.

if(window.cordova && window.cordova.plugins.Keyboard) {
  //Removing this or setting it to false should do the trick
  cordova.plugins.Keyboard.hideKeyboardAccessoryBar(false);
}