I want to open a Tooltip with TooltipManager when the user clicks over a READ-ONLY RadRating. Is there a way to achieve this? It works with OnMouseOver, but i'm unable to assign the Click event :-(
var tooltipManager = $find("<%=RadToolTipManager1.ClientID%>");
//get the tooltip target - the rating item
var target = evt.currentTarget;
//get the value for the tooltip - the rating item value - when it is disabled it does not get populated in the title so we use the inner span's HTML content
var val = target.getElementsByTagName("span")[0].innerHTML;
//remove the title attribute of the tooltip target to ensure it will not take precedence over the load-on-demand (if present, it will)
target.setAttribute("title", "");
if (!tooltipManager || !target)
return;
var tooltip = tooltipManager.getToolTipByElement(target);
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Feedback Portal
and vote to affect the priority of the items