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

RadTooltip not working on RadAjax Panel

1 Answer 94 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:38 PM
Hello,

I am having tooltips in my page. I have rad ajax panel with textboxes, labels and radio buttons.

If I click on button and radajaxpanel showsup. After that tooltips are not working.

TIA

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 05 Jun 2012, 07:51 AM
Hi,

I tried the same scenario and its working fine at my end.Please check the following code.

ASPX:
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" />
    <telerik:RadAjaxPanel ID="RadAjaxPanel1" Visible="false" runat="server" LoadingPanelID="RadAjaxLoadingPanel1">
       <asp:TextBox ID="TextBox1"  runat="server"></asp:TextBox>
       <telerik:RadToolTip ID="RadToolTip1" runat="server" RelativeTo="Element" TargetControlID="TextBox1" IsClientID="true" ManualClose="true"         Text="RadToolTip"></telerik:RadToolTip>
</telerik:RadAjaxPanel>
<asp:Button ID="button1" runat="server" onclick="button1_Click" />

C#:
protected void button1_Click(object sender, EventArgs e)
{
    RadAjaxPanel1.Visible = true;
}

Please provide the code if it doesn't help.

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