Hello, I have a rotator which it implements a ascx, and in the ascx there is a linkbutton that it opens a tooltip who implements other ascx.
It works fine in IE, but in Firefox and Chrome the button doesn't work, it is disabled.
Ascx
It works fine in IE, but in Firefox and Chrome the button doesn't work, it is disabled.
<telerik:RadRotator ID="RadRotator1" runat="server" Width="900px" Height="300" ItemWidth="450px"ItemHeight="300" ScrollDuration="500" RotatorType="Buttons" OnDataBound="RadRotator1_DataBound"OnClientItemShown="OnClientItemShown"> <ItemTemplate> <uc1:Component ID="Component0" runat="server"></uc1:Component> </ItemTemplate> <ControlButtons LeftButtonID="leftArrow" RightButtonID="rightArrow" /></telerik:RadRotator>Ascx
<telerik:RadToolTipManager ID="RadToolTipManager1" OffsetY="-1" HideEvent="LeaveToolTip" Width="800" Height="400" runat="server" EnableShadow="true" OnAjaxUpdate="OnAjaxUpdate" RelativeTo="BrowserWindow" Position="TopCenter" BackColor="#D6D6D6" ShowEvent="OnClick" Modal="True" ManualCloseButtonText="Cerrar" Skin="Default" ManualClose="True" AutoCloseDelay="2000000" > <TargetControls> <telerik:ToolTipTargetControl IsClientID="False" TargetControlID="btnVer" Value="" /> </TargetControls> </telerik:RadToolTipManager><asp:LinkButton ID="btnVer" runat="server" > <img id="Img1" alt="" src="~/Imagenes/Botones/btn_ver_anuncio.png" runat="server" border="0" /> </asp:LinkButton>