I am using telerik RadToolTipManager control to show tooltip on html controls.(anchor tag, span label etc.) as below in my .ascx page in asp.net
<telerik:RadToolTipManager OnClientBeforeShow="BeforeShow_Tootip" ID="BVAutoRadToolTipManager" runat="server" ToolTipZoneID="tooltipZoneDiv" Position="TopRight" HideDelay="500" AutoCloseDelay="10000" Skin="Vista" AutoTooltipify="True">
</telerik:RadToolTipManager>
above code is working fine in IE and FF and display tootip at TopRight as I set Position="TopRight" in markup.
Issue: Now, when I open my page in Chrome it show tooltip on correct position on page load first time. but when I Scroll the page down then the tool tip position is far above the mouse pointer.
Can you please give me a suggestions that Is there any way to set the position correct when user hover the element. How can we set position Using OnClientBeforeShow event of RadToolTipManager.
Thanks
Any help will be very much appreciated ..!!
This was reported as a bug (Wrong placement (position) of RadToolTip in Chrome 61). Workaround is to override the _getPosRelativeToMouse method.
This Js code should fix the issue.