I have radgrid and radgrid is inside the radwindow. I have put the checkbox on each row of the radgrid and also I have put the radbutton outside the radgrid. On button click I want to get the check status of checkbox. But I am getting false all the time at server side.
on button click event I have attached this code but for all rows it is returning false.
foreach (GridDataItem dtIteam in RadGrid.Items)
{
CheckBox chkBox = dtIteam.FindControl("chkAcBox") as Checkbox;
if (chkBox.Checked)
{
response.write("Checkbox is checked");
}
}