Hi Chris,
The
ShowEvent = "FromCode" instructs the tooltip object to not attach any event handlers to the
TargetElement, and the tooltip should be shown using client code, such as the
show method.
We tested the
OnFocus scenario using a regular select / <asp:DropdDownList> object and it worked fine.
In case you are using RadComboBox Prometheus, however, for the ShowEvent = "OnFocus" to work, you need to attach the tooltip to the combo's
INPUT element. Here is how to do it:
<
telerik:RadComboBox ID="combo" runat=server>
<Items>
<telerik:RadComboBoxItem Value="Item" Text="Item" />
</Items>
</telerik:RadComboBox>
<telerik:radtooltip runat="server" ID="RadToolTip1"
TargetControlID = '<%#this.combo.ClientID + "_Input" %>'
IsClientId=true
ShowEvent="OnFocus"
.../>
Best regards,
Tervel
the Telerik team