I am having trouble getting a bound boolean to a GridViewCheckBoxColumn to show its state.
It looks like everything is binding fine, but if I click on the checkbox and go to another cell, the state of the checkbox is reset. I bound a normal GridViewDataColumn to the boolean field and I can see that the value is updated each time I click on the cell.
I am using build version 2012.1.326.40
<telerik:RadGridView Name="dgvBreaks" ShowGroupPanel="False" Margin="0,0,0,53" AutoGenerateColumns="False" SelectionUnit="Cell"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding Price}" Header="Price" Width="120" IsReadOnly="True" /> <telerik:GridViewCheckBoxColumn DataMemberBinding="{Binding MatchUs}" Header="Match Us" AutoSelectOnEdit="True" EditTriggers="CellClick" /> <telerik:GridViewCheckBoxColumn DataMemberBinding="{Binding MatchThem}" Header="Match Them" AutoSelectOnEdit="True" EditTriggers="CellClick" /> </telerik:RadGridView.Columns> </telerik:RadGridView>It looks like everything is binding fine, but if I click on the checkbox and go to another cell, the state of the checkbox is reset. I bound a normal GridViewDataColumn to the boolean field and I can see that the value is updated each time I click on the cell.
I am using build version 2012.1.326.40