http://book.cakephp.org/view/1348/generatetreelist
generatetreelist() returns a pseudo-tree in a relative order, with
children under parents.  I would like results wherein the peers are
also ordered, alphabetically by label.  Here is a quick example if
this isn't clear:

array(
        [1] =>  "My Categories",
        [2] =>  "_Fun",
        [3] =>  "__Sport",
        [4] =>  "___Surfing",
        [16] => "___Skating",
)

This array is not fully ordered (to my liking anyway).  Surfing is
above Skating, when it should be below.  When an array contains dozens
of elements like this, it is difficult to find what you are looking
for (without alphabetical ordering).

The only past online discussions I can find on this issue, end with
"If you want this solved, then write the function yourself."  So my
question is... has anyone wrote the solution yet?

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to