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

ToolTips as Popups on RadEditor Tool Buttons

1 Answer 34 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Xorcist
Top achievements
Rank 1
Xorcist asked on 29 Jan 2010, 04:01 PM
Is there an easy way to do this. I already have my ToolTip hooked up, and it shows next to the RadEditor when the associated tool button is clicked (I just tagged a custom function in to show the tooltip), but is there a way I can get it to show up in relation to the button rather than the entire editor window?

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 03 Feb 2010, 04:06 PM
Hi Xorcist,

I am not completely sure what is your exact goal and how exactly you have configured your tooltips.

If you want simply to replace the standard browser tooltips with RadToolTips, it is enough to simply use the AutoTooltipify functionality as shown below:

<telerik:RadEditor ID="editor" runat="server">
            </telerik:RadEditor>
            <telerik:RadToolTipManager ID="mng" runat="server" AutoTooltipify="true" RelativeTo="Element"
                ToolTipZoneID="editor">
            </telerik:RadToolTipManager>

Setting the ToolTipZoneID property to the editor will limit the autotooltipifying only to the editor and setting RelativeTo="Element" will ensure that the tooltip will show relative to the button.

If this is not what you need, what I suggest is to examine the RelativeTo property which is demonstrated below:

http://demos.telerik.com/aspnet-ajax/tooltip/examples/relativeto/defaultcs.aspx

What you should do is to set each separate button as target control and also set RelativeTo="Element".

Regards,
Svetlina
the Telerik team

Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Follow the status of features or bugs in PITS and vote for them to affect their priority.
Tags
ToolTip
Asked by
Xorcist
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Share this question
or