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

Q1 2009 RadToolTipManager causes problem with RadGrid

3 Answers 66 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Marian
Top achievements
Rank 1
Marian asked on 17 Mar 2009, 02:44 PM
Hi to all,

I am using RadToolTipManager for tooltipify all controls on the page:

<telerik:RadToolTipManager ID="RadTM" runat="server" Skin="Office2007"  AutoTooltipify="true" />

I have ajaxified RadGrid on my page, that worked good with Q3 2008 library. Today I moved to Q1 2009 and the same code causes javascript error whenever sorting, expanding, editing or other RadGrid command is invoked
htmlfile: Unspecified error on line 

var

_29=_28.getClientRects();
I can achieve errorless behavior of RadGrid commands by removing of RadToolTipManager from the page. But I do not want to do it.

 

Does anybody know where is the problem?

3 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 19 Mar 2009, 02:54 PM

Hello Marian,

I assume what might be causeing this issue, would you please test whether  including the following script fixes the issue:

   <script type="text/javascript">     
         Telerik.Web.UI.RadToolTip.prototype._oldAdjustCallout = Telerik.Web.UI.RadToolTip.prototype._adjustCallout;     
             
       Telerik.Web.UI.RadToolTip.prototype._adjustCallout = function()     
    {     
          if(!this.get_targetControl()) return;     
          this._oldAdjustCallout();       
    };     
        </script>    
 


Greetings,

Svetlina
the Telerik team


Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
Marian
Top achievements
Rank 1
answered on 20 Mar 2009, 06:12 PM
Hello Svetlina,
thank you for your response. I added your script but the same error messages are displayed.
0
Tervel
Telerik team
answered on 23 Mar 2009, 12:41 PM
Hello Marian,

We are not sure what might be causing the problem, so our suggestion is to open a support ticket and send us a simple project that reproduces it. Once we re-produce the issue on our end, we will establish what is causing it and send you back a workaround/solution.

Kind regards,
Tervel
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
ToolTip
Asked by
Marian
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Marian
Top achievements
Rank 1
Tervel
Telerik team
Share this question
or