Esempio n. 1
0
 /**
  * Updates a particular model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id the ID of the model to be updated
  */
 public function actionUpdate($id)
 {
     $model = $this->loadModel($id);
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Job'])) {
         $model->attributes = $_POST['Job'];
         if ($model->save()) {
             EQuickDlgs::checkDialogJsScript();
             $this->redirect(array('index', 'id' => $model->id));
         }
     }
     EQuickDlgs::render('update', array('model' => $model));
 }