Telerik,
I have a RadGrid that is bound on the client-side. I would like to access the hyperlinkcolmn in the RowDataBount (client-side) function at set the "click" event. I am having all sorts of trouble getting to the correct control. Can you help me out?
Here is the HyperLinkColumn
Here is the client-side function I want to use to access the lyperlink click event:
I have a RadGrid that is bound on the client-side. I would like to access the hyperlinkcolmn in the RowDataBount (client-side) function at set the "click" event. I am having all sorts of trouble getting to the correct control. Can you help me out?
Here is the HyperLinkColumn
<telerik:GridHyperlinkColumn UniqueName="RequestNumber" HeaderText="Request #" SortExpression="RequestNumber" DataTextField="RequestNumber" HeaderStyle-Width="6em" AllowFiltering="false" />Here is the client-side function I want to use to access the lyperlink click event:
this.RowDataBound = function(sender, args) { var item = args.get_item(); var dataItem = args.get_dataItem(); var rowNumber = parseInt(item._itemIndexHierarchical);};