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

Code behind load of ToolTip works, but not with MasterPage

2 Answers 59 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
TheLostLeaf
Top achievements
Rank 2
TheLostLeaf asked on 29 Jul 2010, 06:44 PM
Hello,

After 8 hours of trouble shooting, I have to submit for help.

Basically I load a RadToolTip manager into a placeholder in an ASPX page, it works fine... But if the aspx page has a masterpage attached it fails. I tried the isClient false, which doesnt help.

One note is the control name of the image is different in each page;
ContentPlaceHolder1_ctl00_Image1 (w/masterpage)
ctl02_Image1 (w/o masterpage)


Thanks for any help...
Eric

- using Q2-2010 Ajax, VS2010

http://radtooltip.canyondigital.net/ (view sample demonstrating error)

http://radtooltip.canyondigital.net/RadToolTipProject.zip (VS2010 sample project)

2 Answers, 1 is accepted

Sort by
0
Accepted
Rumen
Telerik team
answered on 30 Jul 2010, 04:56 PM
Hello TheLostLeaf,

Thank you for reporting this problem.

The problem is fixed in the latest existent internal build of RadControls for ASP.NET AJAX.

As a quick workaround you could try the following code as well:

Copy Code
protected override void OnInit(EventArgs e)
{
    base.OnInit(e);
    RadToolTipManager1.UpdatePanel.ClientIDMode = RadToolTipManager1.ClientIDMode;
}


Kind regards,
Rumen
the Telerik team
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 Public Issue Tracking system and vote to affect the priority of the items
0
TheLostLeaf
Top achievements
Rank 2
answered on 30 Jul 2010, 06:32 PM
Sweet ! Thanks !
Tags
ToolTip
Asked by
TheLostLeaf
Top achievements
Rank 2
Answers by
Rumen
Telerik team
TheLostLeaf
Top achievements
Rank 2
Share this question
or