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

Updation From Telerik 13 to 15

2 Answers 36 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Ali
Top achievements
Rank 1
Ali asked on 08 Sep 2015, 07:06 AM
I have updated Telerik 13 to 15 whenever i perform any Post back operation on my tooltip it actually disappears and UI us totally damaged, actually the tool tip goes to the Background after any control post back

2 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 08 Sep 2015, 09:32 AM

Hi Ali,

Do you include the tooltip itself in the AJAX request? It is advisable that you only include its contents, e.g.:

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="Panel1">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="Panel1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadToolTip ID="RadToolTip1" runat="server">
    <asp:Panel ID="Panel1" runat="server">
        Your content goes here
    </asp:Panel>
</telerik:RadToolTip>

In later versions we have changed the RenderInPageRoot property to default to true, so you can try setting it explicitly to false to see if you will get the old behavior back.

If neither helps, please open a support ticket and send us a small runnable example that clearly indicates the problem so we can investigate it.

Regards,

Marin Bratanov
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Ali
Top achievements
Rank 1
answered on 08 Sep 2015, 02:28 PM

Thanx Marin Bratanov, Solved
I have Just changed RenderInPageRoot="false".

Tags
ToolTip
Asked by
Ali
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Ali
Top achievements
Rank 1
Share this question
or