public function examinationAction()
 {
     $cdattribute = $this->_request->getParam("cdattribute");
     //die(var_dump($cdattribute));
     $attributeModel = new AttributeModel();
     $attributeData = $attributeModel->fetchAll($attributeModel->getAttributRelatedToTheMaterial($cdattribute));
     $this->_helper->layout->disableLayout();
     $page = $this->_request->getParam("page", 1);
     $responce = new stdClass();
     $responce->page = $page;
     $responce->total = 10;
     $responce->records = 100;
     $i = 0;
     foreach ($attributeData as $row) {
         $responce->rows[$i]['cell'] = array($row->cdexamination, $row->nmexamination, $row->nmmaterial);
         $i++;
     }
     $this->view->examination = $responce;
 }