Took me a little while to work this out so I'm blogging it here in the hopes it will help someone in the future:
Need to Contain your Paginated data?
in your controller:
$this->paginate = array(
"contain"=>array(
// usual contain array
)
);
$this->set("data", $this->paginate("Model"));
For example, to bring back and paginate a User (id, first_name, last_name) and their Title (Mr, Mrs, etc.):
/app/users_controller.php
Recent comments
3 weeks 4 days ago
3 weeks 5 days ago
5 weeks 2 days ago
11 weeks 2 days ago
21 weeks 13 hours ago
21 weeks 4 days ago
23 weeks 4 days ago
44 weeks 2 days ago
46 weeks 11 hours ago
47 weeks 17 hours ago