/** * Returns the data model based on the primary key given in the GET variable. * If the data model is not found, an HTTP exception will be raised. * @param integer $id the ID of the model to be loaded * @return Puertas the loaded model * @throws CHttpException */ public function loadModel($id) { $model = Puertas::model()->findByPk($id); if ($model === null) { throw new CHttpException(404, 'The requested page does not exist.'); } return $model; }
echo $form->labelEx($model, 'id_usuarios'); ?> <?php echo $form->dropDownList($model, 'id_usuarios', CHtml::listData(Usuarios::model()->findAll(), 'id_usuarios', 'nombre')); ?> <?php echo $form->error($model, 'id_usuarios'); ?> </div> <div class="row"> <?php echo $form->labelEx($model, 'id_puertas'); ?> <?php echo $form->dropDownList($model, 'id_puertas', CHtml::listData(Puertas::model()->findAll(), 'id_puertas', 'nombre')); ?> <?php echo $form->error($model, 'id_puertas'); ?> </div> <div class="row"> <?php echo $form->labelEx($model, 'fecha_y_hora_entrada'); ?> <?php echo $form->textField($model, 'fecha_y_hora_entrada'); ?> <?php echo $form->error($model, 'fecha_y_hora_entrada');