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

Calendar with RadTooltipManager gets two tooltips

2 Answers 57 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Jenny
Top achievements
Rank 1
Jenny asked on 27 Oct 2010, 12:32 PM
I have changed the default tooltip of the controls to a Telerik tooltip by adding a RadTooltipManager and set the AutoTooltipify-property to true. This works fine for all controls but the Calendar.
The calendar date tooltips looks good at first showing only the Telerik tooltip. But after changing e.g. the month two tooltips appear when hovering a date - both the default tooltip and the Telerik tooltip.

Any help on how to make only the Telerik tooltip appear would be greatly appreciated!

2 Answers, 1 is accepted

Sort by
0
Accepted
Svetlina Anati
Telerik team
answered on 01 Nov 2010, 12:45 PM
Hello Jenny,

 Thank you for the provided screenshots, I examined them and as far as I can see the problem is that double tooltips are shown - one which is the standard one and one which is generated by the tooltip manager. To avoid this you should force the retooltipification just after the view is changed as shown below:

Copy Code
<script type="text/javascript">
    function OnCalendarViewChanged(sender, args)
    {
        $find("<%=RadToolTipManager1.ClientID %>").tooltipify(sender.get_element());
    }
</script>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<telerik:RadCalendar ID="calendar" runat="server" ClientEvents-OnCalendarViewChanged="OnCalendarViewChanged">
</telerik:RadCalendar>
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" AutoTooltipify="true"
    Skin="Black">
</telerik:RadToolTipManager>

Please, test this solution and in case the issue persists - send me a simple reproduction page along with detailed reproduction steps and explanations and I will do my best to help.

Greetings,
Svetlina
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
0
Jenny
Top achievements
Rank 1
answered on 01 Nov 2010, 02:47 PM
It works, thank you!
Tags
ToolTip
Asked by
Jenny
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Jenny
Top achievements
Rank 1
Share this question
or