Hi Rob,
I am not quite sure how exactly you show the RadToolTip - by using a RadToolTipManager or by using separate RadToolTip controls.
I have a few suggestions but they depend on your exact scenario. What I can suggest is:
- If you are using separate RadToolTip controls you can declare two RadToolTips for each target control and set their ShowEvent to OnMouseOver and OnFocus. This will simulate the desired behavior.
- If you are using separate RadToolTip controls you can hook up the onfocus event of the target control and show the RadToolTip after obtaining a reference to it in the following manner:
function showToolTip() |
{ |
var tooltip = $find("<%= Radtooltip1.ClientID %>"); |
tooltip.show(); |
} |
<asp:TextBox ID="TextBox2" runat="server" onfocus="showToolTip()"></asp:TextBox> |
- In case you are using RadToolTipManager control I suggest that you put two RadToolTipManager controls on your page with the same target controls in their TargetControls collections and specify the particular ShowEvent properties for each of them.
I hope that you will find my suggestions helpful. In case you experience problems with the implementation of the mentioned above, please open a new support ticket and send me a sample project with a detailed explanation of the experienced problems.
Best wishes,
Svetlina
the Telerik team