I have a rad rotator. I want to show a tooltip On radrotator OnClientItemClicked event
. I also Want to get the text of lblDescription in to tootip's Label1. . Is there any way to do this in client side.My code is Here.. Thanks in Advance
<telerik:RadRotator ID="RadRotator1" runat="server" FrameDuration="1"
ScrollDirection="up" Height="140px" ScrollDuration="2000" OnClientItemClicked="itemclicked"
Width="100%" >
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" Font-Size="Small" Font-Italic="False" ForeColor="#0033CC">
<%# Eval("Title")%></asp:LinkButton>
<asp:Label ID="lblDescription" runat="server" ><%# Eval("Description")%> </asp:Label>
</ItemTemplate>
</telerik:RadRotator>
<telerik:RadToolTip runat="server" ID="RadToolTip2" ShowEvent="FromCode" ShowDelay="0" TargetControlID="LinkButton1" Animation="Slide"
HideEvent="ManualClose" Width="300px" RelativeTo="Element" Position="MiddleRight" >
<asp:Label ID="Label2" runat="server" > </asp:Label>
</telerik:RadToolTip>
. I also Want to get the text of lblDescription in to tootip's Label1. . Is there any way to do this in client side.My code is Here.. Thanks in Advance
<telerik:RadRotator ID="RadRotator1" runat="server" FrameDuration="1"
ScrollDirection="up" Height="140px" ScrollDuration="2000" OnClientItemClicked="itemclicked"
Width="100%" >
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" Font-Size="Small" Font-Italic="False" ForeColor="#0033CC">
<%# Eval("Title")%></asp:LinkButton>
<asp:Label ID="lblDescription" runat="server" ><%# Eval("Description")%> </asp:Label>
</ItemTemplate>
</telerik:RadRotator>
<telerik:RadToolTip runat="server" ID="RadToolTip2" ShowEvent="FromCode" ShowDelay="0" TargetControlID="LinkButton1" Animation="Slide"
HideEvent="ManualClose" Width="300px" RelativeTo="Element" Position="MiddleRight" >
<asp:Label ID="Label2" runat="server" > </asp:Label>
</telerik:RadToolTip>