Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
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
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
}