Skip to Content
0
Jun 18, 2018 at 03:55 PM

SAP UI5 Fullscreen: Issue with Key Board in Android Device

202 Views

Hello,

I am using SAP UI5 with simple VBox having 10 inputs when i keep the focus on the input fields which are at the bottom of screen the screen enables scroll and keep the focus on input as expected. Img1

Focus set on Input 7:

Where as if i am in full screen mode, the key board is over laying on the input on which the focus is set. Img2.

Focus set on Input 7:

Code used for full screen mode:

fnFullScreen:function () {

var oEle = document.getElementById('content');

if (oEle.requestFullScreen) {

oEle.requestFullScreen();

} else if (oEle.mozRequestFullScreen) {

oEle.mozRequestFullScreen();

} else if (oEle.webkitRequestFullScreen) {

oEle.webkitRequestFullScreen();

} else if (oEle.msRequestFullscreen) {

oEle.msRequestFullscreen(); }

};

Please suggest.

Best Regards,

Bhaskar.

Attachments

img1.png (92.3 kB)
img2.png (85.3 kB)