public function updateCxn()
 {
     try {
         $model = new Construction($this->data->cxn->idConstruction);
         $model->updateEntry($this->data->cxn->entry);
         $this->renderResponse('information', 'OK');
         //            $this->renderPrompt('information', 'Cxn updated.', "structure.editEntry('{$this->data->cxn->entry}');");
     } catch (\Exception $e) {
         $this->renderResponse('error', $e->getMessage());
     }
 }