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

Scheduler with RadToolTip but no UpdatePanel

1 Answer 49 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Shamon Larson
Top achievements
Rank 1
Shamon Larson asked on 06 May 2010, 06:11 PM
Can you give me an example of using Scheduler with RadToolTip but no UpdatePanel?

When I try the solution with the UpdatePanel and I use a MasterPage, I get the following error:

  • Sys.WebForms.PageRequestManagerServerErrorException: Input string was not in a correct format.

 

When I don't use the MasterPage, it works fine.

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 10 May 2010, 09:53 AM
Hello Shamon,

In addition to removing the UpdatePanel from the demo, can you also delete the following javascript  code(only highlighted part):
<script type="text/javascript">
       //<![CDATA[
           function hideActiveToolTip()
           {            
               var tooltip = Telerik.Web.UI.RadToolTip.getCurrent();
               if (tooltip)
               {
                   tooltip.hide(); 
               }
           }
             
           Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(beginRequestHandler);
           function beginRequestHandler(sender, args)
           {
               var prm = Sys.WebForms.PageRequestManager.getInstance();
               if (args.get_postBackElement().id.indexOf('RadScheduler1') != -1) 
               
                   hideActiveToolTip(); 
               
           


Best wishes,
Peter
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.
Tags
Scheduler
Asked by
Shamon Larson
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or