Hello,
I want to make a window with Two XamDataTree's and a XamDataGrid. The first XamDataTree will show some text in every node. The Second one will display some complicated data. The XamDataGrid will also display some complicated data, I already know how this data can be displayed. I structured the location of these controls with a grid, since I also need to show a Ribbon, which still works fine.
The problem is that only the second tree is made visible, when I hide the second tree, the first tree becomes visible. Unless I show the XamDataGrid, in which case only the XamDataGrid is visible.
Is there a special magical way of showing multiple XamData Controls that I'm unaware of?
HI,
Here a sample applicatiion that displays a XamDataTree with the Xamgrid.
Sincerely,
Matt
Developer Support Engineer
Also I want to ask is it possible to link the two XamDataGrids in opening and collapsing nodes?
It could work by making the nodes open and collapse based on a property in the Model, so then if a node in either tree changes, I change the model and the corresponding node in the other tree mirrors the behavior. Currently the only way I see is looping through every node in the source tree until I find the position of the active node, so I can reach the corresponding node in the other tree, but this will perform very poorly.
I am assuming you want to link two XamDataTrees.
You can bind the Expansion of a Node to a property in the class that the XamDataTree is bound to. The NodeLayout has an IsExpandedMemberPath Property that you can se to the name of a property in the class you are bound to.
Here a code snippet: <ig:NodeLayout Key="PlayerLayout" TargetTypeName="Player" IsExpandedMemberPath="IsExpanded" DisplayMemberPath="Name"> </ig:NodeLayout>
I am not sure how you are linking the two trees and would need morinformation.
MattDeveloper Support Engineer