Hi octavio,
thank you very much for your reply 🙂
It helped my very much !
From my point of view this problem is caused only by selecting vertical scrolling active (point 2.).
Without scrolling it works as expected.
I decided to overcome this problem by not rely on android to do this shifting for me. I created my own mechanism
For people having the same problem I will describe my approach shortly
– create a custom html-widget in the designer that contains a text input or text area (html)
– make sure that it is located as a child of the page in the html hierarchie
– use jquery to set position:fixed , left , height, width, background-color , etc. as desired. Use position:absolute for all html elements contained in the custom html-widget. This will give you full control on the layout.
– set the css properties dynamicly using javascript+jquery . this gives you full control on behaviour.
– if the custom html-widget will destroy your layout set in the designer the height to 0. that worked for me.
thats the almost perfect solution for my purposes. “Almost” because there is one issue that does not work as desired.
The “only” problem I have, I will discuss in a new post named “no on-back event when keyboard active”