I have a griddatacontrol with a checkbox column. I use the MVVM pattern. The itemssource property of the GridDataControl is set with a binding to an ICollectionView en el ViewModel. The checkbox column is mapped to a boolean property of the elements from the ICollectionView. The problem is that when I checked some checkboxes from the grid's elements, the ICollectionView in the ViewModel just recognizes from the second element (that were checked) onwards. The first element is checked but the ViewModel doesn't recognize it. I have been doing many tests and I think that the ViewModel doesn´t capture the check event in the row that is selected.
Would you please help me?