You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whats the difference between the following two, iOS only, hide accessory bar options? Can both be set from config.xml and/or be set from in the code? If the same, whats the point of having two different options?
**HideKeyboardFormAccessoryBar** (for iOS only)
Boolean (true by default)
true: hides the keyboard accessory bar.
false: shows the keyboard accessory bar.
<preference name="HideKeyboardFormAccessoryBar" value="false" />
**Keyboard.hideFormAccessoryBar** (for iOS only)
Hide the keyboard toolbar.
Set to true to hide the additional toolbar that is on top of the keyboard. This toolbar features the Prev, Next, and Done buttons.
Keyboard.hideFormAccessoryBar(value, successCallback);
The text was updated successfully, but these errors were encountered:
One is a method, the other a preference.
The 'HideKeyboardFormAccessoryBar' preference is set in config.xml, and sets the default mode for your app. The 'Keyboard.hideFormAccessoryBar' method is used in your script for changing the preference while your app is running.
Whats the difference between the following two, iOS only, hide accessory bar options? Can both be set from config.xml and/or be set from in the code? If the same, whats the point of having two different options?
The text was updated successfully, but these errors were encountered: