I have a RadGrid that is bound on the client-side. It contains a GridTemplateColumn with a label and a tooltip.
Because it's bound on the client i can only assume that I would need to dyanmically set the tooltip text there as well. My issue is that I cannot get the handle of the tooltip in the OnRowDataBound event. ...Possibly because it lies within the RadGrid. Any ideas on how to accomplish this?
The GridTemplatecolumn:
handle to tooltip is null
Because it's bound on the client i can only assume that I would need to dyanmically set the tooltip text there as well. My issue is that I cannot get the handle of the tooltip in the OnRowDataBound event. ...Possibly because it lies within the RadGrid. Any ideas on how to accomplish this?
The GridTemplatecolumn:
<telerik:GridTemplateColumn DataField="dataf1" HeaderText="myheading1" UniqueName="dataf1">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='hover'>
</asp:Label>
<telerik:RadToolTip ID="RadToolTip1" runat="server" TargetControlID="Label1" Width="150px"
RelativeTo="Element" Position="MiddleRight" EnableShadow="true">
</telerik:RadToolTip>
</ItemTemplate>
</telerik:GridTemplateColumn>
handle to tooltip is null
function OnRowDataBound(sender, args)
{
var tooltip = $find("RadToolTip1");
tooltip.set_text = "something new here"; //this is null!
}