If I place a tooltip manager on a page and hard code in its width and height, the tooltip renders smoothly. As im generating the contents of the tooltip panel dynamically from a database, the height will vary depending on the amount of text returned, so I cant hardcode the height, but as soon as I remove the height property, the tooltip renders very slowly and 'jerky'. Is this a known bug ? I cant fix the height since I dont know what it will be until runtime when its contents are retrieved
<telerik:RadToolTipManager runat="server" AnimationDuration="300" ShowDelay="200" |
HideDelay="1" ID="RadToolTipManager1" Width="450px" RelativeTo="Element" |
Animation="Slide" Position="BottomCenter" OnAjaxUpdate="OnAjaxUpdate" |
Skin="Sunset" HideEvent="LeaveToolTip" /> |
c#
this.RadToolTipManager1.TargetControls.Add(this.ImageGuarantee.ClientID, "Guarantee", true); |
this.RadToolTipManager1.TargetControls.Add(this.ImageWhy.ClientID, "Why", true); |
this.RadToolTipManager1.TargetControls.Add(this.ImageVIP.ClientID, "VIP", true); |