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
I am binding the keyboard popup on field which is on a modal window. When I open the keyboard for the first time, everything works well. But when I close it and the modal window and re-open the keyboard, the keyboard layout is completely messed up.
The text was updated successfully, but these errors were encountered:
This is happening because the size calculations are done when the elements are not visible.
To make it work, I added a call to sizeKeys() inside pageElement.on('click touch', options.inputType, function () {
This worked for me.
This is happening because the size calculations are done when the elements are not visible.
To make it work, I added a call to sizeKeys() inside pageElement.on('click touch', options.inputType, function () {
This worked for me.
I am binding the keyboard popup on field which is on a modal window. When I open the keyboard for the first time, everything works well. But when I close it and the modal window and re-open the keyboard, the keyboard layout is completely messed up.
The text was updated successfully, but these errors were encountered: