Hello Vishal Dalsania,
I just answered your support ticket. For anyone, who might run into the same problem, I will place the information here as well:
We are aware of this issue and it is on our TODO list for the next Q. For the time being, I can offer you the following workaround:
<body> |
<script type="text/javascript"> |
var width = 100; |
function OnClientBeforeShow(sender, args) |
{ |
sender.set_width(width); |
var wrapperDiv = document.getElementById("RadToolTipWrapper_" + sender.get_id()); |
var tableElement = wrapperDiv.getElementsByTagName("TABLE")[0]; |
if(wrapperDiv && tableElement) |
{ |
tableElement.style.width = width + "px"; |
wrapperDiv.style.width = width + 2 + "px"; |
} |
width += 100; |
} |
</script> |
<form id="form1" runat="server"> |
<asp:ScriptManager ID="ScriptManager1" runat="server" /> |
<asp:Label ID="Label1" runat="server" Text="Show tooltip"></asp:Label> |
<telerik:RadToolTip ID="RadToolTip1" runat="server" TargetControlID="Label1" Height="100" |
OnClientBeforeShow="OnClientBeforeShow" ManualClose="true" ContentScrolling="Both"> |
</telerik:RadToolTip> |
</form> |
</body> |
</html> |
Kind regards,
Tsvetie
the Telerik team