Ejemplo n.º 1
0
 /**
  * Список форм
  * 
  * @return void
  */
 public function indexAction()
 {
     $options = $this->Forms->getGridOptions('index');
     if ($this->_request->isXmlHttpRequest()) {
         $rows = $this->Forms->getFormsList($this->_params);
         $paginator = $this->Forms->getPaginator();
         $this->_helper->json(Phorm_JQuery_DataGrid::data($rows, $paginator, $options + $this->_params));
     } else {
         $this->view->assign('ResourceDataTable', $this->view->DataGrid('ResourceDataTable', $options));
     }
 }