Hy
I want to add a Radio button column to my grid
I used the follwing code
how can I let only one radio button to be select
(a kind of a radio button group)
Thanks
I want to add a Radio button column to my grid
I used the follwing code
how can I let only one radio button to be select
(a kind of a radio button group)
Thanks
<telerik:RadGridView.Resources> |
<ControlTemplate x:Key="cellTemplate1" TargetType="{x:Type telerik:GridViewCell}"> |
<RadioButton IsChecked="{Binding Field.Record.Data.RB, RelativeSource={RelativeSource TemplatedParent}}" |
HorizontalAlignment="Center" VerticalAlignment="Center" /> |
</ControlTemplate> |
<Style x:Key="RBbooleanCellStyle"> |
<Setter Property="telerik:GridViewCell.Template" Value="{StaticResource cellTemplate1}" /> |
</Style> |
</telerik:RadGridView.Resources> |