Sort Alphabetically property

Previous Next

This is where you specify the Tree View sorting behavior. There are three possible values for this property:

No

The nodes in Tree View will appear in the order that your query produces.

SortPerNode (the default)

The query-results from the separate TreeView Nodes are sorted separately. This is the same behaviour as the Yes value in previous versions of this property.

SortPerParent.

All items that are children of the same parent item are sorted together.

For example, we have a Tree View with 3 Nodes: root node TVN1 with child nodes TVN2 and TVN3.

TVN1 has an item A, for which TVN2 fetches child items B2 and X2, and TVN3 fetches items C3 and Z3

SortPerNode (the default) sorts as follows:

A

B2

X2

C3

Z3

 

SortPerParent sorts as follows:

A

B2

C3

X2

Z3