我正在使用TbActiveForm。我想在选择列表中显示默认选择的项目请帮帮我,我的代码如下,
<?php
echo $form->dropDownListRow($model, 'type', CHtml::listData(MyModel::model()->findAll(),'id','name');, array('class'=>'span5', 'maxlength'=>255));
?>
答案 0 :(得分:0)
默认情况下,您要选择的值在options array
中设置该值<?php
echo $form->dropDownList($model,'column_name',$list,array('empty'=>'--Select--','options'=>array('value'=>array('selected'=>true)))); ?>
?>