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
898
WebDropDown display problem on (Safari)Ipad
posted

<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"%>

                                                </td>

                                               

                                            </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>

                                                <td style="width: 230px; border-bottom: solid 1px #E8E8E8;text-align:left; vertical-align:top;">

                                                    <%# DataBinder.Eval(Container.DataItem, "Standort_Name")%>

                                                </td>

                                               

                                            </tr>

                                        </table>

                                    </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

Parents
No Data
Reply
  • 29417
    Verified Answer
    Offline posted

    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

     

Children
No Data