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
$paginator->sort() error?
Posted on 04/17/2009 at 01:32 pm by Kevin Wentworth
Viewed 11,010 times | 0 comments
I thought there was an error in the paginator view helper. All of a sudden I could only sort a field ascending. I (again) did a little research and came across a great thread on the CakePHP Google Group (here). Basically, as of 1.2.8120, you need (or should) specify the ModelName in your sort() function. I had only been doing sort('id'), sort('name'). Now I am doing sort('ID', 'ModelName.id') and sort('Name', 'ModelName.name'). It's a little more work having to specify the label (otherwise it defaults to ModelName.field, instead of just field).
Hope this saves someone a bit of head scratching. Plus, I hope I remember this now that I've written a post about it.
Cheers,
-Kevin Wentworth
Tags for $paginator->sort() error?
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!