This is a migrated thread and some comments may be shown as answers.

RadToolTip Issue

1 Answer 41 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Atchut
Top achievements
Rank 1
Atchut asked on 04 Jun 2012, 10:30 PM
Hello,
I have a textbox which is in invisible mode. I am making it visible on code behind.

RadTooltip is not working for that textbox. Is it because of the textbox is invisible initially ?

If so, how can I solve this ?

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 05 Jun 2012, 07:50 AM
Hello Atchut,

I cannot reproduce the issue at my end. Here is the full code that I tried which worked as expected. Attached is the screenshot.
aspx:
<asp:Button ID="Button3" runat="server" Text="Button" onclick="Button3_Click" />
<asp:TextBox ID="TextBox1" runat="server"  Visible="false"></asp:TextBox>
<telerik:RadToolTip runat="server" ID="RadToolTip1" Text="show tooltip" TargetControlID="TextBox1" IsClientID="true" Position="BottomRight" RelativeTo="Element" HideEvent="ManualClose"></telerik:RadToolTip>
C#:
protected void Button3_Click(object sender, EventArgs e)
{
 TextBox1.Visible = true;
}

Thanks,
Princy.
Tags
Grid
Asked by
Atchut
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or