Guest User

Untitled

a guest
Jul 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. public function relations()
  2. {
  3. return array(
  4. 'category' => array(self::BELONGS_TO, 'Category', 'category_id'),
  5. );
  6. }
  7.  
  8. <div class="row">
  9. <?php echo $form->labelEx($model,'category_id'); ?>
  10. <?php echo $form->dropDownList($model,'category_id',???); ?>
  11. <?php //echo $form->textField($model,'category_id'); ?>
  12. <?php echo $form->error($model,'category_id'); ?>
  13. </div>
  14.  
  15. <?php
  16. $list = CHtml::listData(Category::model()->findAll(array('order' => 'name')), 'id', 'id'));
  17. echo $form->dropDownList($model,'category_id',$list);
  18. ?>
Add Comment
Please, Sign In to add comment