We have developed a mobile app using webix, basically a form containing around 10 text fields.
When we try to access this page in mobile and try to type on text fields which are at the bottom(like 8th ,9th and 10th field by scrolling down), as we know in mobile the mobile keypad pops-up the moment we click on text fields and it occupies space on the screen and our html form page adjusts to remaining space with scroll.
But the issue is after typing when we hide the keypad of mobile to see complete form , we are not able to scroll up the form page to view the topmost fields.
This issue we are facing on all the form page in the mobile device. is there any solution for this ?
This page works fine on Desktop where as in mobile once user scrolls down to enter data in text field using th poped up keyboard , after that we are not able to scroll up to see top doctor details with his image.
are there news about this problem?
we have a similar one, probably the same:
using a tablet, we insert data in a text field; when we close the keyboard input, the underlying form is partially “frozen”; you are not able to scroll upwards anymore to the first input text object;
any ideas how to solve it?
We can confirm the issue and working on the possible fix.
Meanwhile, it possible to attach onBlur event to the problematic input and call from it something like window.scrollTo(0,0) to restore the original state.