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
1 week 9 hours ago
4 weeks 6 days ago
5 weeks 21 hours ago
6 weeks 4 days ago
12 weeks 5 days ago
22 weeks 3 days ago
23 weeks 10 hours ago
24 weeks 6 days ago
45 weeks 5 days ago
47 weeks 3 days ago