Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sorting tree nodes in Primefaces

I am working with JSF 2.1 and Primefaces 3.3. I am using the primefaces tree component for crating the tree from Database. I wanted to sort the tree nodes in alphabetical order at all levels. Please help me on this.

like image 872
neni Avatar asked Feb 15 '13 09:02

neni


1 Answers

we had problems with the sorting via Comparator and found out, that there is a handy PrimeFaces TreeUtils.sortNode( TreeNode, Comparator ) class already provided which works like a charm :)

like image 150
Andreas Covidiot Avatar answered Sep 28 '22 09:09

Andreas Covidiot