Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
645
UltraTree header above each node
posted

Good afternoon!

There's the recursive data, and I need to fiil with it an UltraTree.

Each node can be one of the two types (accordingly, two column sets). There are 2 classes A and B.

class Base {public List<Base> Coll {get;set;}}

class A : Base {public string NameA{get;set;}}

class B : Base {public string NameB1{get;set;} NameB2{get;set;}}

I populate the tree in code recursively using ColumnSets.

When I set property ViewStyle = FreeForm, I see a header above each node. It's terrible.

I want header to be shown only above the first child node.

How to implement this?

Parents Reply Children