/** * Creates a new model. * If creation is successful, the browser will be redirected to the 'view' page. */ public function actionCreate() { $model = new Specification(); // Uncomment the following line if AJAX validation is needed // $this->performAjaxValidation($model); if (isset($_POST['Specification'])) { $model->attributes = $_POST['Specification']; if ($model->save()) { if (isset($_POST['SpecValue'])) { $model->setSpecValues($_POST['SpecValue']); } } $this->redirect(array('view', 'id' => $model->spec_id)); } $this->render('create', array('model' => $model)); }