Hi Support,
I am trying to bind to the selected or focused row of a detail grid. I am using the built in master-detail functionality of DXGrid and I can get data into the grid perfectly and I can also bind to the current row of the "master" grid using the SelectedItem property. I assumed I could use the same technique for the details grid but it doesn't seem to work that way. I searched the help and knowledge base and noticed the focusedrow property which I tried but that does not seem to work and its also marked obsolete.
Is there a way to bind to the current row of the details grid using XAML ? I am using the MVVM pattern so I would prefer a pure XAML approach using bindings if possible - but if code behind is required then I'll use that. Here is the XAML I am currently using :
XAML<dxg:GridControl x:Name="teamsGrid" SelectedItem="{Binding SelectedTeam}" HorizontalAlignment="Stretch" MaxHeight="1000" ItemsSource="{Binding Teams}" AutoGenerateColumns="AddNew" ShowBorder="False" ShowLoadingPanel="{Binding IsBusy}">
<dxg:GridControl.DetailDescriptor>
<dxg:DataControlDetailDescriptor ItemsSourcePath ="Users" ShowHeader="True" >
<dxg:GridControl Margin="5" AutoPopulateColumns ="True" IsManipulationEnabled="False" >
<dxg:GridControl.View>
<dxg:TableView AllowCascadeUpdate="True" Focusable="True" FocusedRow="{Binding TeamSelectedUser}" DetailHeaderContent="Users" AutoWidth="True" ShowGroupPanel="False"/>
</dxg:GridControl.View>
</dxg:GridControl>
</dxg:DataControlDetailDescriptor>
</dxg:GridControl.DetailDescriptor>
</dxg:GridControl>
Hope that makes sense. THanks for your help
Chris