I have a fairly straightforward hyperlink bound column in a RadGrid like so:
What I'd like to do is put a tooltip on the hyperlink that's bound to something other than the DataTextField. Is there a way to do this in the GridHyperLinkColumn?
<telerik:GridHyperLinkColumn DataNavigateUrlFields="FileID" DataNavigateUrlFormatString="~/goto.aspx?f={0}" DataTextField="Name" DataTextFormatString="{0}" HeaderText="Filename" UniqueName="FileName" Target="_blank" SortExpression="Name"> What I'd like to do is put a tooltip on the hyperlink that's bound to something other than the DataTextField. Is there a way to do this in the GridHyperLinkColumn?