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

Radtooltip not working with ie9 when loaded with a radTabStrip

2 Answers 42 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Peter
Top achievements
Rank 1
Peter asked on 29 Jun 2012, 06:37 PM
I have an application that works in ie9 compatitability mode.  But in ie9 mode only the arrows show up on the radtooltips.


<

 

 

script type="text/javascript" language="javascript">

 

 

 

function showToolTip(element, displayText, radClientID) {

 

 

 

var tooltipManager = $find("<%= RadToolTipManager1.ClientID %>");

 

 

 

//if hoverover before page is loaded, return nothing

 

 

 

if (!tooltipManager) return;

 

 

 

//Find the tooltip for this element if it has been created

 

 

 

var tooltip = tooltipManager.getToolTipByElement(element);

 

 

 

//Create a tooltip if it doesn't exist

 

 

 

if (!tooltip) {

 

tooltip = tooltipManager.createToolTip(element);

tooltip.set_text(displayText);

}

 

 

//Let the tooltip's own show mechanism take over from here - execute the onmouseover just once

 

element.onmouseover =

 

null;

 

 

 

//show the tooltip

 

tooltip.show();

}

 

</

 

 

script>

 

 

<

 

 

telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" RelativeTo="Element"

 

 

 

Position="BottomCenter" HideEvent="LeaveToolTip" AutoTooltipify="true" ContentScrolling="Default" BorderWidth="2" EnableShadow="true">

 

 

 

 

</telerik:RadToolTipManager>

 

2 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 03 Jul 2012, 08:35 AM
Hello Peter,

I tried this and things are working fine with me. You can find attached my test page and a video from my test attached as a reference. What I can advise at this point is that you

1) examine my sample and try to find the difference with your case that is causing the problem. It can be, for example, some JavaScript error that manifests only under IE9, or some CSS rule that interferes. You can see what is causing the problem by stripping down functionality from the page until things work.

2) examine this online demo that shows the client-side API of the manager, mainly because of the timeout that is needed before showing the tooltip.


All the best,
Marin Bratanov
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
Peter
Top achievements
Rank 1
answered on 24 Jul 2012, 01:50 PM
The problem ended up being the Telerik:RabMultipage.  I had a RadTabstrip with tadtabs and radmultipage.  I had to add

RenderSelectedPageOnly

="true"  

 

Tags
ToolTip
Asked by
Peter
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Peter
Top achievements
Rank 1
Share this question
or