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 6 days ago
3 weeks 6 days ago
4 weeks 1 day ago
4 weeks 1 day ago
4 weeks 5 days ago
5 weeks 5 hours ago
5 weeks 6 hours ago
26 weeks 5 hours ago
26 weeks 5 days ago
28 weeks 2 days ago