Tree View Auto Sorting

Before I try to reinvent the wheel, does anyone know a way to get the tree view to not auto sort my windows? Trying to go step 10, step 20, step 30....

The built-in sorting of the component isn't smart enough to sort numbers in a "human" order rather than lexicographically, but you can work around that without too much trouble.

If you add a custom property to the tree view, make that your "raw" dataset property, and then add an expression binding to the tree view's main data property that calls the sortDataset expression function, you can achieve a more useful result:
sortDataset({Root Container.Tree View.raw}, "text", true, true)

1 Like