Forms Scroll After Updating to iOS 11.3

Hi there,

After updating to iOS 11.3 all forms scroll up and down. Anyone with an idea on how to solve this?

BR,

Paulo

Is this any web app, or just ones saved to the Home screen?

It happens with both. Web Apps and Home Screen saved Apps. The apps “bump” up and down if you slide the screen.

Changing the forms position property to “fixed” seems to fix it.

Wouldn’t be difficult to use Responsive Design principles with forms with the position property set to “fixed”?

Futhermore there is a blog post related to AppStudio 6 and Positioning Controls where you can read the following: “There are three useful settings: absolute, static and relative. (fixed is included for completeness, but not currently used by AppStudio)”

Are you sure “fixed” solves it?

BR,
Paulo

Here’s another solution I found on the web. PauloN has tested it and reports good results:

Put this anywhere in your app - the Gobal Code module is a good one.

document.addEventListener('touchmove', function(e) {
    e.preventDefault();
}, { passive: false });

If you’re using BASIC, do it like this:

JavaScript
document.addEventListener('touchmove', function(e) {
    e.preventDefault();
}, { passive: false });
End JavaScript

Position = “fixed” works for me :slight_smile:

-Tore