/** * 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 SubunPend the loaded model * @throws CHttpException */ public function loadModel($id) { $model = SubunPend::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_SUBUNPEND', array('class' => 'col-md-3 control-label')); ?> <div class="col-md-4"> <?php //echo $form->textField($model,'ID_SUBUNPEND',array('class'=>'span6 m-wrap')); ?> <?php echo $form->dropDownList($model, 'ID_SUBUNPEND', CHtml::listData(SubunPend::model()->findAll(), 'ID_SUBUNPEND', 'SUBUNPEND'), array('class' => 'form-control', 'empty' => '- Pilih Sub Unsur -')); ?> <?php echo $form->error($model, 'ID_SUBUNPEND'); ?> </div> </div> <!--<div class="form-group"> <?php echo $form->labelEx($model, 'TGL_SUBMIT', array('class' => 'col-md-3 control-label')); ?> <div class="col-md-4"> <?php echo $form->textField($model, 'TGL_SUBMIT', array('class' => 'form-control')); ?>