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
105
Can I Off auto sorting in tree node or make end node if it has child node?
posted

Hi,

I want to make ultraTree node that has some root node and one of them has child node.

For that display, I want to display end of tree that has child

ex)

- Atree

- Ctree

- Dtree

- Btree

    - AChild

    - BChild

 

Normal ultre tree display like

- Atree

- Btree

- Ctree

- Dtree

 

 

Can I off sorting in tree or make end tree for specific node?

Parents
No Data
Reply
  • 69832
    Verified Answer
    Offline posted

    I'm not certain that I followed this, but you can set the Override.SortType property on the control, a particular level, a particular Nodes collection. If you want to switch off sorting for the 'Btree' node's child nodes collection, you could set UltraTree.Nodes["Btree"].Nodes.Override.SortType property to 'None'.

Children