/** * 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 SubunPenelitian the loaded model * @throws CHttpException */ public function loadModel($id) { $model = SubunPenelitian::model()->findByPk($id); if ($model === null) { throw new CHttpException(404, 'The requested page does not exist.'); } return $model; }
<?php echo $form->error($model, 'PENGAJUAN_Ke'); ?> </div> </div> <div class="form-group"> <?php echo $form->labelEx($model, 'ID_SUBUNPENELITIAN', array('class' => 'col-md-3 control-label')); ?> <div class="col-md-4"> <?php //echo $form->textField($model,'ID_SUBUNPENELITIAN',array('class'=>'span6 m-wrap')); ?> <?php echo $form->dropDownList($model, 'ID_SUBUNPENELITIAN', CHtml::listData(SubunPenelitian::model()->findAll(), 'ID_SUBUNPENELITIAN', 'SUBUNPENELITIAN'), array('class' => 'form-control', 'empty' => '- Pilih Sub Unsur -')); ?> <?php echo $form->error($model, 'ID_SUBUNPENELITIAN'); ?> </div> </div> <div class="form-group"> <?php echo $form->labelEx($model, 'KEGIATAN_PENELITIAN', array('class' => 'col-md-3 control-label')); ?> <div class="col-md-4"> <?php echo $form->textArea($model, 'KEGIATAN_PENELITIAN', array('class' => 'form-control')); ?>