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

Usercontrol in tooltip w/o manager?

1 Answer 36 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Nik
Top achievements
Rank 1
Nik asked on 19 Oct 2009, 07:47 PM
Is it possible to simply load a usercontrol in a tooltip without using tooltipmanager? ie:
<rad:RadToolTip ID="radPreviousViewMainTT" runat="server" TargetControlID="lnkPreviousViewMain" 
                IsClientID="true" Sticky="true" Animation="none" Position="BottomCenter" RelativeTo="Element" 
                OffsetY="2" Height="400px" Width="300px" Skin="Default" Title="Previously Viewed Items" 
                ContentScrolling="Y" Style="z-index: -1;" AutoCloseDelay="10000" ManualClose="true"
                    <ucPviDdl:ucPreviousItems runat="server" ID="ucPVI" /> 
            </rad:RadToolTip> 
 
It seems the tooltip stops even appearing on hover once I did this.

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 20 Oct 2009, 03:25 PM
Hello Nik,

There is no problem to nest a user control directly in a separate RadToolTip. What could be causing the problem in your case is the following:

1) You have provided incorrect TargetControlID and thus teh tooltip show is never triggered.
2) You are using the obsolete properties Sticky and ManualClose which are logically not possible to be used in combination - please remove them and use the HideEvent instead.

In case this does not help, please provide more details and source code and best - a live urll where we can observe the problem.

Greetings,
Svetlina
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
ToolTip
Asked by
Nik
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or