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

ContentScrolling="Y" fails in latest upgrade

2 Answers 64 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Chris Dalessandri
Top achievements
Rank 1
Chris Dalessandri asked on 06 Oct 2008, 09:27 PM
I just upgraded my Telerik dll from Q2 2008 to the latest release.  When I call .show() from javascript in IE I get an error "object required".  It works in FireFox, and it works if a rollback my Telerik dll.

My tooltip is useing ContentScrolling="Y" which seems to be the problem.  Setting ContentScrolling="auto" seems to be the only option that works.  All other values (both,none,X,Y) seem to cause this error.

thanks.

2 Answers, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 07 Oct 2008, 02:24 PM
Hello Chris Dalessandri,
I was able to reproduce the problem you describe and forwarded it to our developers. We will fix it for the next update of the suite.

Until then, you can use the following workaround - just place the code below on the page, where you have defined the RadToolTip:
<script type="text/javascript">          
Telerik.Web.UI.RadToolTip.prototype.old_setOverflow = Telerik.Web.UI.RadToolTip.prototype._setOverflow;  
Telerik.Web.UI.RadToolTip.prototype._setOverflow = function()  
{            
    try 
    {  
        this.old_setOverflow();  
    } catch(e){;}  
}          
</script> 

Best wishes,
Tsvetie
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Sean
Top achievements
Rank 1
answered on 13 Oct 2008, 09:18 AM
Thanks for posting that work around, was driving me nuts....

There goes a few hours of my life I can't get back, and as I learned time is the only non - renewable resource ;)  It will teach me to look on the forums first....
Tags
ToolTip
Asked by
Chris Dalessandri
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Sean
Top achievements
Rank 1
Share this question
or