Hey,
I have a hierarchical data grid where each parent item has two child collections. I was wondering if it is possible to have the child row collections displayed side by side instead of one on top of the other?
Thanks
Hello,
You can do this, but you would have to use UnboundFields and set their BindingPath to a path like this:
"ParentProperty.NestedProperty".
Does this work if ParentProperty is a collection? If so, does the grid generate just enough rows based on which child collection has the most items?
Is there any way that I can do this purely in xaml (I'm assuming there isn't any simple property for this sort of thing)? Is there some control template that I could customize to place the pools of child rows in some sort of horizontal panel?
No, if it is a collection, you would have to programatically create UnboundFields and set their UnboundPath to a indexed path - ParentProperty[0].NestedProperty