Hello.
I make a user control and add RadTooltipManager on master page and OnLoad of my control I do next:
And when I initialize property Description of my control I see empty tooltip when click on control/
I think TooltipTargetControlCollection.Add(string controlID,string val,bool isClientID) works like "val" is the tooltip which showing by RadTooltipManager near controlID control.
Is it true?
And how can I show different tooltip on different controls using one RadTooltipManager and passing to it tooltip message?
Thank you.
I make a user control and add RadTooltipManager on master page and OnLoad of my control I do next:
/// <summary> /// Tooltip description /// </summary> public string Description { get; set; } protected override void OnLoad(EventArgs e) { base.OnLoad(e); RadToolTipManager tooltipManager; tooltipManager = this.Page.Master.FindControl("tooltipManager") as RadToolTipManager; if (tooltipManager == null) { throw new ApplicationException("There are no Tooltip Manager on the page!"); } tooltipManager.TargetControls.Add(this.hplnkInfo.ClientID,Description,true); }I think TooltipTargetControlCollection.Add(string controlID,string val,bool isClientID) works like "val" is the tooltip which showing by RadTooltipManager near controlID control.
Is it true?
And how can I show different tooltip on different controls using one RadTooltipManager and passing to it tooltip message?
Thank you.