Hello Arnaud,
The described behavior is the expected one when you have a relative parent of the absolute positioned RadToolTip. However, you can use one of the following approaches to get the desired behavior:
- Use a RadToolTipManager instead of RadToolTip - in this case the tooltips will be added as children of the form element instead of the place the manegr is declared.
- Override the default function which adds the tooltip and make it add it to the form. In order to do this you should add the following code to your page:
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); |
}; |
} |
Kind regards,
Svetlina
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.