Inside templatecolumn of radGrid, I have a radio Button. I want to check its value on client side. I had written following code
var grid = $find("<%=radGridQuotes.ClientID%>");
var MasterTable = grid.get_masterTableView();
var Rows = MasterTable.get_dataItems();
for (var i = 0; i < Rows.length; i++)
{
var row = Rows[i];
//After this i dont know how to find the radio button control. i tried var radioButton = row.findControl("radioButtonApprove"); but this is throwing error as propert cant be found. can anyone help me on this?....
}
var grid = $find("<%=radGridQuotes.ClientID%>");
var MasterTable = grid.get_masterTableView();
var Rows = MasterTable.get_dataItems();
for (var i = 0; i < Rows.length; i++)
{
var row = Rows[i];
//After this i dont know how to find the radio button control. i tried var radioButton = row.findControl("radioButtonApprove"); but this is throwing error as propert cant be found. can anyone help me on this?....
}