Hello Telerik team,
Using this demo : http://demos.telerik.com/aspnet-ajax/menu/examples/appearance/iphonemenu/defaultcs.aspx . i have tried to prepare a simple application.
everything works fine on IE, firefox . But when it comes to safari or Iphone the combobox opens behind the Radmenu. Through one of your forums i came to know that RadMenu is configured to be on top of RadComboBox. In My case comboBox is inside radmenu .
Please provide me a solution or workaround for this problem .
Thank you
Vipin
Using this demo : http://demos.telerik.com/aspnet-ajax/menu/examples/appearance/iphonemenu/defaultcs.aspx . i have tried to prepare a simple application.
everything works fine on IE, firefox . But when it comes to safari or Iphone the combobox opens behind the Radmenu. Through one of your forums i came to know that RadMenu is configured to be on top of RadComboBox. In My case comboBox is inside radmenu .
Please provide me a solution or workaround for this problem .
| <telerik:RadMenuItem Text="Quick Patient" BackColor="#FFFFFF" style="z-index: 10000"> |
| <Items> |
| <telerik:RadMenuItem BackColor="#343b43"> |
| <ItemTemplate> |
| <asp:UpdatePanel ID="pnl_quickpatient" runat="server" UpdateMode="Conditional"> |
| <ContentTemplate> |
| <div > |
| <div id="wrapper"> |
| <table class="txt" style="background-color:#343b43;"> |
| <tr> |
| <td align="center" colspan="2"> |
| <div id="header1" align="center">Test<br />testtt</div> |
| </td> |
| </tr> |
| <tr> |
| </tr> |
| <tr> |
| <td align="center" colspan="2" class="txt"> |
| <asp:Label ID="lblheading" runat="server" Text="Quick Patient" Font-Bold="True"></asp:Label> |
| </td> |
| </tr> |
| <tr align="Left"> |
| <td colspan="2"> |
| <asp:Label ID="lbl_Error" runat="server" ForeColor="Red" Text="" Visible="False"></asp:Label> |
| </td> |
| </tr> |
| <tr align="Left"> |
| <td style="width: 40%;"> |
| Hospitalist |
| </td> |
| <td style="width: 60%;"> |
| <telerik:RadComboBox runat="server" ID="cmb_hospitalist" Enabled="false" Skin="WebBlue" MarkFirstMatch="true" EmptyMessage="Select Hospitalist" AllowCustomText="true" ShowMoreResultsBox="True" EnableLoadOnDemand="True" OnItemsRequested="cmb_hospitalist_ItemsRequested"></telerik:RadComboBox> |
| </td> |
| </tr> |
| <tr align="Left"> |
| <td style="width: 40%;"> |
| PCP |
| </td> |
| <td style="width: 60%;"> |
| <telerik:RadComboBox runat="server" ID="cmb_pcp" Skin="WebBlue" MarkFirstMatch="true" EmptyMessage="Select PCP" AllowCustomText="true" ShowMoreResultsBox="True" EnableLoadOnDemand="True" OnItemsRequested="cmb_pcp_ItemsRequested"></telerik:RadComboBox> |
| </td> |
| </tr> |
| <tr align="Left"> |
| <td style="width: 40%;"> |
| Primary Diagnosis |
| </td> |
| <td style="width: 60%;"> |
| </td> |
| </tr> |
| <tr> |
| <td align="center" colspan="2"> |
| <asp:Button ID="btnSave" runat="server" Text="Save" OnClick="btnSave_OnClick"/> |
| </td> |
| </tr> |
| <tr> |
| <td colspan="2"> |
| </td> |
| </tr> |
| <tr> |
| <td colspan="2"> |
| </td> |
| </tr> |
| </table></div> |
| </div> |
| </ContentTemplate> |
| </asp:UpdatePanel> |
| </ItemTemplate> |
| </telerik:RadMenuItem> |
| </Items> |
| </telerik:RadMenuItem> |
Thank you
Vipin