This is a migrated thread and some comments may be shown as answers.

Rad Combobox Items not visible in tooltip

1 Answer 83 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
avinob
Top achievements
Rank 1
avinob asked on 28 Feb 2009, 07:07 AM
Hi,

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

 

 

&nbsp;<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>

 

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 03 Mar 2009, 10:08 AM
Hi Avinob,
The problem you describe is a result of the default z-index, applied to the RadToolTip (8000) and RadComboBox (6000). You have to set greater z-index to the RadComboBoxes inside the RadToolTip than 8000 and you should get the expected result. For additional information, please refer to the Controlling absolute positioning with z-index help topic.

All the best,
Tsvetie
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
ToolTip
Asked by
avinob
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or