I have a webpage component in a PopupPanel. When I execute the code in a browser the page is rendered and scrollbars are added as the page will not fit in the user. When the same code is executed on an iPad no scroll bars are displayed. This makes the popup unusable.
Any ideas?
#PRIM_WEB.Page
Re: #PRIM_WEB.Page
Just to clarify - I don't expect scrollbars - only to be able to access those parts of the page cut off by the component frame by touch.
- Stewart Marshall
- Posts: 417
- Joined: Thu Nov 05, 2015 5:25 pm
Re: #PRIM_WEB.Page
Hi Jim
This is an odd one and appears to be specific to Safari or perhaps just the iPhone/iPad
I can use touch on my desktop screen to scroll an embedded page in Chrome, Edge, IE and FireFox, but my iPhone with Safari scrolls the whole page.
Gotta love browser differences.
Please report it to you regional helpdesk.
Regards
This is an odd one and appears to be specific to Safari or perhaps just the iPhone/iPad
I can use touch on my desktop screen to scroll an embedded page in Chrome, Edge, IE and FireFox, but my iPhone with Safari scrolls the whole page.
Gotta love browser differences.
Please report it to you regional helpdesk.
Regards
Re: #PRIM_WEB.Page
Thanks for looking, I have submitted a support request.
Re: #PRIM_WEB.Page
Stewart
I found this discussion in good old google.
https://css-tricks.com/forums/topic/scr ... e-on-ipad/
Does this make sense?
try to add CSS3 property [ -webkit-overflow-scrolling:touch; overflow:auto;] to the parent container. Worked fine!
I found this discussion in good old google.
https://css-tricks.com/forums/topic/scr ... e-on-ipad/
Does this make sense?
try to add CSS3 property [ -webkit-overflow-scrolling:touch; overflow:auto;] to the parent container. Worked fine!