I am using some user controls(email to friend and reminder etc) inside rad rotator.These user controls uses Radtooltip.The problem is when these controls used outside the Rotator the tooltip works fine but when they are used inside the rotator , the tooltip restrainted inside rotator and does'nt showup completely.Is there any way that tooltip will show normally while using inside rotator.
Thanks
Thanks
4 Answers, 1 is accepted
0
Hi Imran,
I believe that this forum thread will help.
Greetings,
Fiko
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
I believe that this forum thread will help.
Greetings,
Fiko
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

RobDob
Top achievements
Rank 1
answered on 30 Jan 2009, 05:53 PM
Hi,
Nope, the forum thread you mentioned does not help, is there a resolution?
Thanks,
Nope, the forum thread you mentioned does not help, is there a resolution?
Thanks,
0
Hello RobDob,
By default the RadToolTip control is added to that place where it was declared. In order to get a better appearance, I suggest to override the default function which adds the RadToolTip in the document at the place it was declared in order to add it at the end of the document as shown below:
Then you can use the RadToolTip control between a <ItemTemplate> tags of the RadRotator control.
I hope this helps.
Kind regards,
Fiko
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
By default the RadToolTip control is added to that place where it was declared. In order to get a better appearance, I suggest to override the default function which adds the RadToolTip in the document at the place it was declared in order to add it at the end of the document as shown below:
<script type="text/javascript"> |
if (typeof (Telerik) != "undefined") |
{ |
Telerik.Web.UI.RadToolTip.prototype._addToolTipToDocument = function(elem) |
{ |
//Append tooltip to end of document |
var form = document.forms[0]; |
form.appendChild(this._popupElement); |
}; |
} |
</script> |
Then you can use the RadToolTip control between a <ItemTemplate> tags of the RadRotator control.
I hope this helps.
Kind regards,
Fiko
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

RobDob
Top achievements
Rank 1
answered on 03 Feb 2009, 01:43 PM
Thank you, that solution works wonderfully..