Hi,
I'm using RadToolTipManager LoadOnDemand functionality in my project.
I've a usercontrol say abc.ascx and it consists of RadGrid control and someother controls,on radgrid Itemdatabound event I'm adding rows of that grid in targetcontrol collection of tooltipmanager and then onajaxupdate event I load a xyz.ascx control to show on demand in the tooltip.
Now I use this usercontrol abc.ascx in default.aspx , everything works as expected until I use the control twice.As long as there was 1 grid control (abc.ascx) in default.aspx it worked as expected ,but as soon as I added another instance of the abc.ascx (abc1 and abc2) then the tooltip position started jumping.It shows tooltip of grid2 in grid1 row.
Can some one please help asap ?
Here is my setting for RadToolTipManager
<telerik:RadToolTipManager ID="toolTipManager" runat="server" Position="BottomRight"
Animation="Fade" OnAjaxUpdate="OnAjaxUpdate" Skin="Outlook" AutoTooltipify="false"
Width="530px" Height="40%" AutoCloseDelay="20000" OnClientBeforeShow="fnConfigure" RelativeTo="Element"
Style="font-size: 18px; text-align: center; font-family: Arial; display: none;">
</telerik:RadToolTipManager>
<script type="text/javascript">
<!--
function fnConfigure(sender, args) {
sender._popupBehavior.set_keepInScreenBounds(false);
}
-->
</script>
Thanks!
Rahul
I'm using RadToolTipManager LoadOnDemand functionality in my project.
I've a usercontrol say abc.ascx and it consists of RadGrid control and someother controls,on radgrid Itemdatabound event I'm adding rows of that grid in targetcontrol collection of tooltipmanager and then onajaxupdate event I load a xyz.ascx control to show on demand in the tooltip.
Now I use this usercontrol abc.ascx in default.aspx , everything works as expected until I use the control twice.As long as there was 1 grid control (abc.ascx) in default.aspx it worked as expected ,but as soon as I added another instance of the abc.ascx (abc1 and abc2) then the tooltip position started jumping.It shows tooltip of grid2 in grid1 row.
Can some one please help asap ?
Here is my setting for RadToolTipManager
<telerik:RadToolTipManager ID="toolTipManager" runat="server" Position="BottomRight"
Animation="Fade" OnAjaxUpdate="OnAjaxUpdate" Skin="Outlook" AutoTooltipify="false"
Width="530px" Height="40%" AutoCloseDelay="20000" OnClientBeforeShow="fnConfigure" RelativeTo="Element"
Style="font-size: 18px; text-align: center; font-family: Arial; display: none;">
</telerik:RadToolTipManager>
<script type="text/javascript">
<!--
function fnConfigure(sender, args) {
sender._popupBehavior.set_keepInScreenBounds(false);
}
-->
</script>
Thanks!
Rahul