In a RadGrid, within the grid I have a clomun that shows as a checkbox. When users choose a single record, and then click Botton, in clieked events How do I know if the selected records the value of the Checkbox?
if using Microsoft Grid,correct syntax is as follows:
bool bIsLocked = ((CheckBox)GridView1.Rows[GridView1.SelectedIndex].Cells[9].Controls[0]).Checked;
But if using RadGrid,how to code?