Ticket Q511072
Visible to All Users

WPF Grid Master-Detail how to bind to detail grid selected item

created 12 years ago

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

Answers approved by DevExpress Support

created 12 years ago (modified 12 years ago)

Hello Chris,
I'm afraid currently DXGrid master-detail mode doesn't support SelectedItem binding for detail grids. You can find additional information about Master-Detail mode limitations in the Master-Detail Mode Limitations article.

    Comments (3)

      Is there any update on this ?

        I don't need multi binding. I just need to capture the SelectedItem.Content to be bound to a different UIElement. In other words I have a child grid that contains list of Fruits, when a fruit is selected in that child grid, I need the ViewModel object to be bound to another UIElement. How can I do that ?

        Alexander Russkov (DevExpress) 11 years ago

          Hi Fahad,
          We have created an example that demonstrates how to bind a focused row when a master-detail grid is used: Binding Master and Detail focused rows to ViewModel objects. Please take a moment to review it and let us know if you need further assistance.

          Thanks,
          Alexander

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.