I have placed 4 rad combobox in a tooltip. when the tooltip is opening i can see the combobox but on clicking on that the list is going behind the tooltip intead of on tooltip.
Code for aspx :
<telerik:RadToolTip ID="RadToolTipFilter" Skin="Vista" runat="server" Modal="true"
Title="Filters" ManualClose="False" Position="Center" RelativeTo="BrowserWindow"
OnClientBeforeHide="OnClientBeforeHide" >
<asp:Panel runat="server" ID="tooltipPan" >
<table cellpadding="0" border="0" cellspacing="10" style="width: 450px">
<tr id="trcbSpecialty" runat="server" visible="false">
<td style="width: 200px;" align="left">
<asp:Label ID="lblcbSpecialty" CssClass="myLabel" runat="server" Text="Specialty:"></asp:Label>
</td>
<td style="width: 200px;" align="left">
<telerik:RadComboBox ID="cbSpecialty" EmptyMessage="Select" runat="server" Skin="Vista"
Width="188px">
<ItemTemplate>
<div id="div1">
<telerik:RadTreeView ID="treecbSpecialty" runat="server" CheckBoxes="True">
</telerik:RadTreeView>
</div>
</ItemTemplate>
<Items>
<telerik:RadComboBoxItem runat="server" />
</Items>
<CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation>
</telerik:RadComboBox>
</table>
</asp:Panel>
</telerik:RadToolTip>