This question is locked. New answers and comments are not allowed.
given my xaml below, what do I need to add in order for the CheckboxColumn to be enabled and allow for the user to change the value? Thank you.
<Grid> <telerik:RadGridView Name="rgvPSEProductInfo" IsReadOnly="True" SelectionChanged="rgvPSEProductInfo_SelectionChanged" AutoGenerateColumns="False" > <telerik:RadGridView.Columns> <telerik:GridViewCheckBoxColumn DataMemberBinding="{Binding bIsChecked}" IsReadOnly="False" Header="Item Completed" TextWrapping="Wrap" HeaderTextAlignment="Center" IsVisible="True" Width="60" > <telerik:GridViewCheckBoxColumn.CellStyle> <Style TargetType="telerik:GridViewCell"> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> </telerik:GridViewCheckBoxColumn.CellStyle> </telerik:GridViewCheckBoxColumn> </telerik:RadGridView.Columns> </telerik:RadGridView> </Grid>