Posted 11 Aug 2016 Link to this post
I am using radgrid, i have used asp link button in GridTemplateColumn .
On click of link button i want to get value of label which is different GridTemplateColumn using javascript.
How to fetch value of label by client side.
Please help. Regards
Posted 16 Aug 2016 Link to this post
function
getControl() {
var
masterTable = $find(
"<%=RadGrid1.ClientID%>"
).get_masterTableView();
var radlbl1
= masterTable.get_dataItems()[0].findControl(
'Label1'
);
// Here 0 represents the index of crow in editmode
}