Hello.
Has anyone had the issue where clicking the Enter key anywhere on a page causes the RadToolTip to appear? I'm creating an ImageButton that fires the tooltip, and cannot figure out why the Enter key is a trigger.
Here is the code I'm using. Am I missing a setting?
Thanks in advance for any help!
Has anyone had the issue where clicking the Enter key anywhere on a page causes the RadToolTip to appear? I'm creating an ImageButton that fires the tooltip, and cannot figure out why the Enter key is a trigger.
Here is the code I'm using. Am I missing a setting?
Thanks in advance for any help!
_toolTipImage =
new ImageButton();
this.Controls.Add(_toolTipImage);
_toolTip =
new RadToolTip();
this.Controls.Add(_toolTip);
_toolTipImage.ID =
"HelpToolTipImage";
_toolTip.ID =
"HelpToolTip";
_toolTip.TargetControlID = _toolTipImage.ID;
_toolTip.Position =
ToolTipPosition.TopRight;
_toolTip.ShowEvent =
ToolTipShowEvent.OnClick;
_toolTip.HideEvent =
ToolTipHideEvent.ManualClose;
_toolTip.Skin =
"Default";
_toolTip.EnableEmbeddedSkins =
false;
_toolTip.Text = "Describe action here.";