Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
285
igDialog scrollbar doesn't appear in Apple IPad device
posted

Hi,

From desktop system igDialog srolling works properly but when I access same screen on Apple IPad, scrollbar is disappearing. Is there any specific setting for this?

PFA screen shot, I tried to access ignite UI sample from IPad and faced the same issue.

Thanks & Regards,

Manjunath M

  • 20255
    Suggested Answer
    Offline posted

    Hello,

    I have found the issue, it is related to iOS and iFrame elements.

    iOS 5 added the following style that can be added to the parent div so that scrolling works.

    "-webkit-overflow-scrolling:touch"

    The only thing that you will need to do is to wrap the iFrame with the following div element:

    <div id="wrapper" style="width: 100%; height: 100%; overflow: auto; -webkit-overflow-scrolling: touch;">

    Online sample:

    http://codepen.io/anon/pen/jEqgEY?editors=101

    Let me know if I may be of further assistance.

  • 20255
    Offline posted

    Hello,

    Thank you for reporting this, I am currently looking into it and soon I will contact you with my findings.