コード例 #1
0
ファイル: _form.php プロジェクト: bagus029/sipakfeb
		<?php 
echo $form->error($model, 'NAMA_JURUSAN');
?>
            </div>
	</div>
        
        <div class="form-group">
		<?php 
echo $form->labelEx($model, 'ID_FAKULTAS', array('class' => 'col-md-3 control-label'));
?>
            <div class="controls">
		<?php 
//echo $form->textField($model,'ID_FAKULTAS',array('class'=>'span6 m-wrap'));
?>
                <?php 
echo $form->dropDownList($model, 'ID_FAKULTAS', CHtml::listData(TblFakultas::model()->findAll(), 'ID_FAKULTAS', 'NAMA_FAKULTAS'), array('class' => 'form-control', 'empty' => '- Pilih Fakultas -'));
?>
		<?php 
echo $form->error($model, 'ID_FAKULTAS');
?>
            </div>
	</div>
        
	<div class="form-group">
		<?php 
echo $form->labelEx($model, 'NAMA_PIMPINAN', array('class' => 'col-md-3 control-label'));
?>
            <div class="controls">
		<?php 
echo $form->textField($model, 'NAMA_PIMPINAN', array('class' => 'form-control'));
?>
コード例 #2
0
 /**
  * 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 TblFakultas the loaded model
  * @throws CHttpException
  */
 public function loadModel($id)
 {
     $model = TblFakultas::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }