Hi,
I am using WebDataTree control and it work fine in all window browsers but when i run my application on IPAD than It does not show scrollbars. Even dragging finger onto screen makes it movable but Scrollars
are not there.It is a weird behaviour.
My code is:
<asp:Panel ID="treepnl" Height="250px" runat="server" ScrollBars="Auto" >
<div >
<ig:WebDataTree ID="masterTree" Height="250px" runat="server" EnableViewState="true"
SelectionType="Single" EnableHotTracking="false" EnableSingleBranchExpand="true"
SingleBranchExpandLevel="0" InitialExpandDepth="1" EnableAjax="true" EnableAjaxViewState="true"
AutoPostBackFlags-NodeClick="On" CheckBoxMode="TriState" CssClass="NodeColorStyle input_TextControlClass">
<ClientEvents Initialize="init" />
</ig:WebDataTree>
</div>
</asp:Panel>
Pls look into this problem.
Best Regards,
Vivek Mahawar
Hello Vivek,
Please do not hesitate to contact me if you need more information regarding this matter.
Hi Vivek,
Thank you for posting in the community.
While overflow is supported on iOS devices, the scrollbars are not shown by design:
http://stackoverflow.com/questions/4168974/iphone-safari-not-showing-scroll-bars
However, as of iOS5 beta there is a CSS property which would allow you to show the scrollbars (at least while scrolling the control):
-webkit-overflow-scrolling: touch
Please feel free to contact me if you need more information.