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
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.
Thank you for reporting this, I am currently looking into it and soon I will contact you with my findings.