Hi ,
We used radTooltip in Rad Grid ItemTemplate , the issue here if we load more data on grid we are getting below error in IE8 only.
"Stop running the script"
<telerik:GridTemplateColumn DataField="Mon6" UniqueName="Mon6" Visible="false" ItemStyle-CssClass="account_Headcol">
<ItemTemplate>
<asp:HyperLink ID="Mon6HLnk" runat="server" Visible="false"></asp:HyperLink>
<asp:Label runat="server" Text="" ID="Mon6Lbl"></asp:Label>
<telerik:RadToolTip runat="server" ID="radTooltip6" ShowEvent="OnMouseOver" HideEvent="LeaveToolTip" IsClientID="true" >
<asp:Label runat="server" ID="lblTooltipText6"></asp:Label>
</telerik:RadToolTip>
</ItemTemplate>
</telerik:GridTemplateColumn>
And Binding Tooltip data in ItemDataBound event of RadGrid like below
Dim lab As Label = CType(gridDataItem("Mon" & i).FindControl("lblTooltipText" & i), Label)
lab.text="<htm><table><tr><td>data 1</td></tr><tr><td>data 2</td></tr></table></html>"
but if won't use RadTooltip i am not getting the issue,Please help me how to fix the issue with RadTooltips
We used radTooltip in Rad Grid ItemTemplate , the issue here if we load more data on grid we are getting below error in IE8 only.
"Stop running the script"
<telerik:GridTemplateColumn DataField="Mon6" UniqueName="Mon6" Visible="false" ItemStyle-CssClass="account_Headcol">
<ItemTemplate>
<asp:HyperLink ID="Mon6HLnk" runat="server" Visible="false"></asp:HyperLink>
<asp:Label runat="server" Text="" ID="Mon6Lbl"></asp:Label>
<telerik:RadToolTip runat="server" ID="radTooltip6" ShowEvent="OnMouseOver" HideEvent="LeaveToolTip" IsClientID="true" >
<asp:Label runat="server" ID="lblTooltipText6"></asp:Label>
</telerik:RadToolTip>
</ItemTemplate>
</telerik:GridTemplateColumn>
And Binding Tooltip data in ItemDataBound event of RadGrid like below
Dim lab As Label = CType(gridDataItem("Mon" & i).FindControl("lblTooltipText" & i), Label)
lab.text="<htm><table><tr><td>data 1</td></tr><tr><td>data 2</td></tr></table></html>"
but if won't use RadTooltip i am not getting the issue,Please help me how to fix the issue with RadTooltips