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

Tooltip stops working after

2 Answers 44 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Ashok
Top achievements
Rank 1
Ashok asked on 25 May 2012, 06:14 AM
I am using RadSchedular with tooltips. I am updating RadSchedular with data on button click event. this is post back event.
Everything is working good. Only issue is when it postback events takes time there is no hour glass on RadSchedular.

So I added ajax support to button by adding it to AjaxManager and associating Radschedular to RadAjaxLoading panel.
This solved my issue but it broke my tooltip. ( does not work any more). Please help me to fix that.
I can send my project file. Let me know

If I remove following from RadAjaxmanager- tool tip starts working.
 <AjaxSettings>
<telerik:AjaxSetting AjaxControlID="btnViewUpdate">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadScheduler1" LoadingPanelID="RadAjaxLoadingPanel1" />
<telerik:AjaxUpdatedControl ControlID="lblViewName" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>

2 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 25 May 2012, 11:46 AM
Hi Ashok,

Could you please make sure you have the following ajax settings?
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
           <AjaxSettings>
               <telerik:AjaxSetting AjaxControlID="Button1">
                   <UpdatedControls>
                       <telerik:AjaxUpdatedControl ControlID="RadScheduler1" />
                       <telerik:AjaxUpdatedControl ControlID="RadToolTipManager1" />
                   </UpdatedControls>
                   </telerik:AjaxSetting>
                   <telerik:AjaxSetting AjaxControlID="RadScheduler1">
                       <updatedcontrols>
                       <telerik:AjaxUpdatedControl ControlID="RadScheduler1" />
                       <telerik:AjaxUpdatedControl ControlID="RadToolTipManager1" />
                   </updatedcontrols>
               </telerik:AjaxSetting>
           </AjaxSettings>
       </telerik:RadAjaxManager>

If the problem persists, please open a support ticket and send us a working sample.

Greetings,
Peter
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Ashok
Top achievements
Rank 1
answered on 25 May 2012, 03:09 PM
It works like a charm now. Thanks lot for you help.
Tags
Scheduler
Asked by
Ashok
Top achievements
Rank 1
Answers by
Peter
Telerik team
Ashok
Top achievements
Rank 1
Share this question
or