Recent Posts
- (09/10) Fixing Warning: the ECDSA host key for 'github.com' differs from the key for the IP addressTAGS:Web Server Admin
- (12/26) CakePHP 3 - Getting List of Column Definitions from a Table (like schema())TAGS:CakephpCake3
- (09/14) Change Order of Loaded Behaviors in CakePHP 3TAGS:Cake3CakephpWeb ProgrammingPhp
- (05/29) CakePHP 3 - Accept JSON Header Only Working When Debug FalseTAGS:Web ProgrammingCakephpCake3
- (05/23) Remove All Events from Google Calendar (Reset Calendar)TAGS:Web ProgrammingPhp
- (11/08) Google Tag Manager (GTM) Not Firing Default PageView EventTAGS:Web ProgrammingJavascriptGoogle Tag Manager
- (10/13) In PHP, how do you get __toString() Magic Method Result without calling echo?TAGS:CakephpCake3Cakephp 13PhpWeb Programming
- (11/14) Getting output from shell_exec() at all timesTAGS:Web ProgrammingWeb Server Admin
Subscribe to my feed
MainelyDesign.com Blog
Reordering Trees in CakePHP 1.3
Posted on 11/07/2013 at 01:39 pm by Kevin Wentworth
Viewed 10,853 times | 0 comments
Every time I add a new record to a tree it was added to the end of the list. This is OK for small lists, but once you get a big list, it's impossible to find things. It would be great if we could sort the tree list by the displayField... and you can:
Reorder CakePHP Trees
It's easy with the built in function (although it might take a while to run)
$this->Model->reorder(); (documentation)
Here is the default settings:
- $options = array( 'id' => null, 'field' => $model->displayField, 'order' => 'ASC', 'verify' => true);
Tree Reordering Not Working?
I found an important gotcha. It appears to be hard-coded that top-level parents must have a parent_id of NULL (not zero). This is really important, otherwise the reorder operation will not work.
Cheers,
-Kevin Wentworth
Tags for Reordering Trees in CakePHP 1.3
Web Programming | Cakephp 13 | Cakephp | Usage
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!