15, 'page' => 1, 'order'=>array('name'=>'asc')); function display() { if(!$this->RequestHandler->isAjax()) { // things you want to do on initial page load go here $this->pageTitle = "Customer List"; } $this->set('customers', $this->paginate('Customer')); if($this->RequestHandler->isAjax()) { $this->viewPath = 'elements'.DS.'customers'; $this->render('paging'); } } } ?>