
I'm testing your Tooltip-Control with the RadCalendar (Samplecode: 054431_CalendarWithRadTooltip).
There I have a problem with updating the Tooltip by changing the month with RadAjaxManager.
How to set the RadAjaxManager the right way?
Thanks for answering,
Andreas
5 Answers, 1 is accepted
In the provided zip, based on one of our online examples there was no RadAjaxManager included - neither in the C#
nor in the VB aspx.
For your convenience we wrapped the calendar and the tooltip manager in a regular MS AJAX UpdatePanel, and we also commented the serverside code that only sets two tooltips - as a result, the calendar items are fully tooltipified and are able to load their own custom content in the tooltips.
Attached is the modified project (please refer to the C# version of the example - e.g. DefaultCS.aspx)
All the best,
Tervel
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center

I personally do not remember why we used an ASP UpdatePanel, instead of a RadAjaxPanel - please note that this thread was stared over an year ago.
I can however suggest, that you:
- Test your page with the latest version of the ASP.NET AJAX suite.
- Use RadCalendar for ASP.NET AJAX, instead of RadCalendar for ASP.NET.
As for showing a RadAjaxLoadingPanel over an UpdatePanel, you will have to show and hide the panel with code. Please refer to this help topic to information.
Best wishes,Tsvetie
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Hi Robert,
Please excuse us for the delayed reply. We needed some additional time to investigate the matter.
I was able to verify the issue and forwarded it to our development department. In the meantime a possible solution for your case (that we discovered) is to remove the RadAjaxPanel control and ajaxify the calendar and the tooltip manager via RadAjaxManager, namely:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="RadCalendar1"> |
<UpdatedControls> |
<telerik:AjaxUpdatedControl ControlID="RadCalendar1" /> |
<telerik:AjaxUpdatedControl ControlID="RadToolTipManager1" /> |
</UpdatedControls> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
<telerik:RadCalendar ID="RadCalendar1" runat="server" OnDayRender="RadCalendar1_DayRender" |
Skin="Web20" AutoPostBack="true"> |
</telerik:RadCalendar> |
<telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" OnAjaxUpdate="RadToolTipManager1_AjaxUpdate" |
Font-Bold="true" Font-Size="Medium" ForeColor="DarkGreen" Height="100px" AutoTooltipify="false"> |
</telerik:RadToolTipManager> |
I am attaching an updated version of the example to this support thread for additional reference. Note that I used the latest release 2008.2.826 of RadControls for ASP.NET AJAX in my local tests.
Let me know whether this helps. Your Telerik points have been updated for the bug report.
Best regards,
Author nickname
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.