I am using a ToolTipManager on a page which is inherited from a master page.
I have one image that shows a tooltip onmouseover.
I noticed that a blank tooltip pops up when I hover over an image which is far from the intended one.
Anyone have this issue? How can I prevent this.
Thanks
I have one image that shows a tooltip onmouseover.
I noticed that a blank tooltip pops up when I hover over an image which is far from the intended one.
Anyone have this issue? How can I prevent this.
Thanks
function showToolTip(element) { |
var tooltipManager = $find("<%= RadToolTipManager1.ClientID %>"); |
if (!tooltipManager) return; |
var tooltip = tooltipManager.getToolTipByElement(element); |
if (!tooltip) { |
tooltip = tooltipManager.createToolTip(element); |
tooltip.set_value(arguments[1].toString()); |
} |
tooltip.show(); |
} |