echo $form->labelEx($model, 'signed'); ?> <?php echo $form->checkbox($model, 'signed'); ?> <?php echo $form->error($model, 'signed'); ?> </div> <div class="row"> <?php echo $form->labelEx($model, 'grade_id'); ?> <?php echo $form->dropDownList($model, 'grade_id', Grade::model()->getOptions()); ?> <?php echo $form->error($model, 'grade_id'); ?> </div> <div class="row"> <?php echo $form->labelEx($model, 'bagged'); ?> <?php echo $form->checkbox($model, 'bagged'); ?> <?php echo $form->error($model, 'bagged');
/** * 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 Grade the loaded model * @throws CHttpException */ public function loadModel($id) { $model = Grade::model()->findByPk($id); if ($model === null) { throw new CHttpException(404, 'The requested page does not exist.'); } return $model; }