Hi
I have a requirement where I need to add a radiobutton as first column of the grid and when the user selects the radiobutton the row should be selected I mean selecteditem should be set for the grid. I have used the below code to show the radio button in the grid but I am not able bind the radiobutton selection to the SelectedItem.
Regards
Kiran
I have a requirement where I need to add a radiobutton as first column of the grid and when the user selects the radiobutton the row should be selected I mean selecteditem should be set for the grid. I have used the below code to show the radio button in the grid but I am not able bind the radiobutton selection to the SelectedItem.
<
telerik:GridViewDataColumn
Name
=
"GridColumnSelector"
Header
=
""
>
<
telerik:GridViewDataColumn
.CellTemplate>
<
DataTemplate
>
<
RadioButton
Name
=
"rdCheck"
GroupName
=
"RadioSelectors"
/>
</
DataTemplate
>
</
telerik:GridViewDataColumn
.CellTemplate>
</
telerik:GridViewDataColumn
>
Regards
Kiran