Automatic Pagination
// description of your code here
Automatic Pagination:
(using model bankBranches with fields 'name' and 'bank_id')
OR
$this->set('bankBranches', $this->paginate('BankBranch.bank_id')); //paginate by bank_id
Sometimes one works, and sometimes the other one works...
Automatic Pagination:
(using model bankBranches with fields 'name' and 'bank_id')
var $paginate = array('order' =>array('name' => 'asc')); //paginate by name
OR
$this->set('bankBranches', $this->paginate('BankBranch.bank_id')); //paginate by bank_id
Sometimes one works, and sometimes the other one works...