Hi
I am working with RadTooltip control. i am using the position as "BottomRight". but it's not showing properly. it's showing BottomRight on the page instead of BottomRight of the selected element on MOSS page. Please let me know Anything wrong with this code.
I am working with RadTooltip control. i am using the position as "BottomRight". but it's not showing properly. it's showing BottomRight on the page instead of BottomRight of the selected element on MOSS page. Please let me know Anything wrong with this code.
<telerik:RadTextbBox ID="RadTextBox1" runat="server" ClientEvents-OnFocus="tonload">
</telerik:RadTextBox>
<telerik:RadToolTip ID="RadToolTip1" runat="server" Text="TextBox" Animation="Slide"
Position="BottomRight" Width="100px" Height="100px" TargetControlID="RadTextBox1_Text"IsClientID="true">
</telerik:RadToolTip>
function tonload(sender, args)
{
var radToolTip = $find("<%= RadToolTip1.ClientID %>");
radToolTip.show();
}