Hi Josh,
When you have the RadToolTipManager's
Sticky property set to false and the
AutoCloseDelay set to 0 the tooltip should disappear when you move the mouse out of the target element. You can test this behavior in
this online demo. I also recommend to upgrade to the last version of RadControls for ASP.NET AJAX, namely Q1 2008 SP1, v. 2008.1.515 and test your project again. In case you still experience the problem, please open a new support ticket and send us a video capture of the described behavior along with a sample reproduction project.
As to hiding the active tooltip manually, you can hook up the onmouseout event of the target control, reference the active tooltip and call its hide method as shown below:
function CloseActiveToolTip() |
{ |
setTimeout(function(){ |
var controller = Telerik.Web.UI.RadToolTipController.getInstance(); |
var tooltip = controller.get_activeToolTip(); |
if (tooltip) tooltip.hide(); |
}, 1000); |
} |
|
Regards,
Svetlina
the Telerik team