I have a RadToolTip attached to an image roll-over. Here are the properties on the tool tip:
The contents of the tool tip is a single Table control.
When we pop up the tooltip the first time, it looks like this: Good Image
When we pop up the tooltip a subsequent time, it looks like this: Bad Image
Can you help me figure out why we are getting this behavior?
| legendTip.Controls.Add(legendTable); |
| legendTip.TargetControlID = dateLabelTable.ID; |
| legendTip.IsClientID = false; |
| legendTip.Animation = ToolTipAnimation.None; |
| legendTip.RelativeTo = ToolTipRelativeDisplay.Element; |
| legendTip.HideDelay = 20000; |
| legendTip.Sticky = true; |
| legendTip.Position = ToolTipPosition.TopRight; |
| legendTip.Skin = "Web20"; |
| legendTip.EnableEmbeddedSkins = true; |
The contents of the tool tip is a single Table control.
When we pop up the tooltip the first time, it looks like this: Good Image
When we pop up the tooltip a subsequent time, it looks like this: Bad Image
Can you help me figure out why we are getting this behavior?