Hi all, I am getting Only the first record is tooltipified
I am using radgrid and i have a bound image column and my code is the following
<telerik:GridTemplateColumn DataField="Image" HeaderText="Image"
SortExpression="Image" UniqueName="Image">
<ItemTemplate>
<img src='<%# Eval("imgFile") %>' id="image1" width="30px" height="50px" />
</ItemTemplate>
</telerik:GridTemplateColumn>
I want to Use Radtooltip or RadTooltipManager instead of the traditional tooltip
I tried to use Radtooltip first error i get is :
my code is now like this
<ItemTemplate>
<img src='<%# Eval("imgFile") %>' id="image1" width="30px" height="50px" />
<telerik:RadToolTip ID="RadToolTip2" runat="server" Animation="Slide" TargetControlID="image1" IsClientID="True" >
<%#Eval("IMGFILE", "SHOW ALBUM")%>
</telerik:RadToolTip>
</ItemTemplate>
Only the first record is tooltipified
please help me and thanks in advance
I am using radgrid and i have a bound image column and my code is the following
<telerik:GridTemplateColumn DataField="Image" HeaderText="Image"
SortExpression="Image" UniqueName="Image">
<ItemTemplate>
<img src='<%# Eval("imgFile") %>' id="image1" width="30px" height="50px" />
</ItemTemplate>
</telerik:GridTemplateColumn>
I want to Use Radtooltip or RadTooltipManager instead of the traditional tooltip
I tried to use Radtooltip first error i get is :
Cannot find a server control with ID=image1. If you need to specify a client-side element ID, please set IsClientID to true.
I changed IsClientId properties to truemy code is now like this
<ItemTemplate>
<img src='<%# Eval("imgFile") %>' id="image1" width="30px" height="50px" />
<telerik:RadToolTip ID="RadToolTip2" runat="server" Animation="Slide" TargetControlID="image1" IsClientID="True" >
<%#Eval("IMGFILE", "SHOW ALBUM")%>
</telerik:RadToolTip>
</ItemTemplate>
Only the first record is tooltipified
please help me and thanks in advance