Completed
Last Updated: 18 May 2015 12:47 by Elena
ADMIN
Marin Bratanov
Created on: 03 Feb 2015 12:09
Category: ToolTip
Type: Bug Report
1
FIX Incorrect position of a dynamically created tooltip with RelativeTo=Browser and Position=Center when the page is scrolled
A workaround is to force the tooltip to update its position when the content arrives (i.e., in the OnClientResponseEnd event: http://www.telerik.com/help/aspnet-ajax/tooltipmanager-client-side-on-response-end.html )

function OnClientResponseEnd(sender, args) {
    var activeTooltip = Telerik.Web.UI.RadToolTip.getCurrent();
    if (activeTooltip) {
        activeTooltip.updateLocation();
    }
}
1 comment
Elena
Posted on: 18 May 2015 12:47
Not reproducible - FF 37 and Telerik.Web.UI.dll version 2015.1.401