This question is locked. New answers and comments are not allowed.
How to synchronise the selectitem between a wcf ria domaindatasource and a dataform:
<telerikGridView:RadGridView IsBusy="{Binding IsLoadingData, ElementName=WcfRiaDomainDataSource}"
ItemsSource="{Binding Data, ElementName=WcfRiaDomainDataSource}"
SelectionMode="Single"
SelectedItem="{Binding DataView.CurrentItem, ElementName=WcfRiaDomainDataSource, Mode=TwoWay}"
/>
<dataFormToolkit:DataForm x:Name="df"
ItemsSource="{Binding Data, ElementName=WcfRiaDomainDataSource}"
SelectedItem="{Binding DataView.CurrentItem, ElementName=WcfRiaDomainDataSource, Mode=TwoWay}"
/>
It's ok between dds and dataform, but the dds.CurrentItem is not moved when I select another row in the RadGridView.
Thanks in advance