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

RadCombobox inside of RadTooltip

4 Answers 132 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
joshua odell
Top achievements
Rank 1
joshua odell asked on 12 Mar 2009, 04:52 AM
I have placed a RadCombobox inside of a Tooltip, on the surface the combobox looks good, however when I click on the combobox, and then go to select the combobox item the whole tooltip disapears.  I'm not doing anything too special, but here's some code snippets,
In looking at it, I believe what is happening is that the combobox is trying to display its own tooltips (each of my combobox items has a tooltip property) and that action is closing the original tooltip (the one hosting the combobox).  this would mean a tooltip inside of a tooltip, which may not be possible.

Any suggestions would be great, thanks

<telerik:RadToolTip ID="fluidTooltip" runat="server" TargetControlID="fluid2" IsClientID="true" 
                Skin="Vista" ShowCallout="false" ShowEvent="OnClick" HideEvent="ManualClose" Sticky="true"
                <div> 
... 
                                <telerik:RadComboBox ID="LatentHeatUnits" runat="server" Style="width: 75px" ZIndex="50001" 
                                    AutoPostBack="True"
                                    <CollapseAnimation Type="InOutBack" Duration="200"></CollapseAnimation> 
                                </telerik:RadComboBox> 
... 
                </div> 
            </telerik:RadToolTip> 
 

4 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 16 Mar 2009, 11:03 AM
Hi Joshua,

The X button used to appear when you set the RadToolTip's ManualClose property to true. However, now the ManualClose and the Sticky properties are obsolete - they still can be used but we do not recommend this because problems may occur especially when using both of them in a combination because this scenario is not a valid one. This being said, the problem comes from the fact that you have set Sticky=true - please remove this setting and this will fix the issue.

Best wishes,
Svetlina
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.
0
joshua odell
Top achievements
Rank 1
answered on 25 Mar 2009, 04:32 AM
thank you Svetlina

worked perfectly
0
Basel Nimer
Top achievements
Rank 2
answered on 31 Mar 2010, 10:16 AM
I have exactly the same problem, and i am not using the sticky property, I did however try to set it to false (to override any default properties) but still the problem didnt work.

<telerik:RadToolTip ID="ttMyToolTip" Skin="Simple" RelativeTo="BrowserWindow" RenderInPageRoot="true" 
    HideEvent="FromCode" Position="Center" IsClientID="false" runat="server" Modal="true" 
    Animation="None" Width="400px" Sticky="false" > 
    <uc1:MyUserControl ID="MyUserControl1" runat="server" /> 
</telerik:RadToolTip> 
MyUserControl contains the raddropdown.


MyUserControl 

0
Tsvetie
Telerik team
answered on 02 Apr 2010, 11:17 AM
Hi Basel Nimer,
I believe Joshua meant that each combobox item tries to display a browser tooltip, not a RadToolTip control. In your case, you are trying to display two RadToolTip controls at the same time. This scenario is not supported.

Sincerely yours,
Tsvetie
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
ToolTip
Asked by
joshua odell
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
joshua odell
Top achievements
Rank 1
Basel Nimer
Top achievements
Rank 2
Tsvetie
Telerik team
Share this question
or