<ig:WebDropDown ID="ddLocation" runat="server" NullText="Standort" StyleSetName="Default" Width="294px"
DropDownContainerHeight="400px" DropDownContainerWidth="294px" >
<HeaderTemplate>
<table style="height: 30px; background-color: Red; color: White; font-size: 13px; font-weight: bold; ">
<tr>
<td style="width: 70px;text-align:left">
<%="Standort" %>
</td>
<td style="width: 230px;text-align:left">
<%="Standort Name"%>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 100%;" >
<tr style="border-bottom: solid 1px #ff0000;">
<td style="width: 70px; border-bottom: solid 1px #E8E8E8;text-align:left; vertical-align:top;">
<%# DataBinder.Eval(Container.DataItem, "Standort_Nr1")%>
<td style="width: 230px; border-bottom: solid 1px #E8E8E8;text-align:left; vertical-align:top;">
<%# DataBinder.Eval(Container.DataItem, "Standort_Name")%>
</ItemTemplate>
</ig:WebDropDown>
I have a problem displaying data in a WebdropDown on the Safari (Ipad).Using browser (Safari) on the PC everything is right. On the IPad the drop-down area is as long as there are data. (Without scrollbars).
Any idea how to fix this?
Best regards
Manfred
Hello Manfred,
Thank you for posting in our forum.
It seems that 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
Let me know if you have any questions or concerns.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support