Quantcast
Channel: Shani's Php CookBook
Viewing all articles
Browse latest Browse all 60

yii, form, create drop down with values from a model

$
0
0

yii, form, create drop down and populate it with values from any model :

Use code below in the view file inside the form:



<?php echo $form->dropDownList($model,'item_type_id',CHtml::listData(ItemType::model()->findAll(),'id','type'), array('empty'=>'select Type'));?>

Viewing all articles
Browse latest Browse all 60

Trending Articles