Prevent bouncing of pages on iOS

1
On iOS, a page will 'bounce' when the user attempts to scroll it and there is nothing to scroll. Is there a way to prevent this? I tried several tricks I found from various web pages but none of them work in a Mendix page.    
asked
2 answers
1

Is this in Safari or a hybrid mobile app? For hybrid mobile, I have used a setting in the config.xml file:

 

<!-- Stop the app from overscrolling and looking all bouncy -->
<preference name="DisallowOverscroll" value="true" />

<preference name="webviewbounce" value="false" />

 

answered
0

Stackoverflow is a good source http://stackoverflow.com/questions/18799517/how-to-stop-uiwebview-bouncing-vertically-in-phonegap-3-0

I assume he tried this trick. Some say it works and some say it does not.

Regards,

Ronald

 

answered