This question is locked. New answers and comments are not allowed.
I'm upgrading from the MS Silverlight DataGrid to the RadGridView and I'm running into an issue. The switchover worked fine except the selected item doesn't seem to be triggering bound controls to update.
I have a DomainDataSource that uses RIA Services. I then have the following bound to the DDS: a RadGridView, a DataPager, a combobox, and several DataForms. With the MS DataGrid whenever I'd select a row ion the grid the form fields and combobox would correspondingly update. This worked in reverse as well: change the selection in the combobox and the selected grid item would change to match.
The issue I'm running in to is that the RadGridView seems to load from the DDS but then changes to the selection in it don't cause the other bound controls to update (nor does this work in reverse when switching the selection in the combobox.)
I looked at the samples and added a PropertyChanged event with the following code:
| private void CaseGrid_PropertyChanged(object sender, PropertyChangedEventArgs e) |
| { |
| if (e.PropertyName == "CurrentItem") |
| this._dds.DataContext = this._caseGrid.CurrentItem; |
| } |
This doesn't seem to work though; the other bound items don't update. What might I be missing?