Hi,
You need to loop the radgridrow to get the values of the checkboxes and retrieving only the once that are checked.
foreach (GridViewDataRowInfo row in radgrid.MasterGridViewTemplate.Rows) |
{ |
string value = row.Cells[1].Value.ToString();
if(value == "true")
{
// ...
} |
// ... |
} |
Hope it helps
gerbrand