我的视图中有一个dropDownList,它从客户端表中填充,该表包含像first_name,last_name,id等列.现在我要显示first_name和last_name作为显示文本和id作为下拉列表中的值,I ‘将id作为值和first_name作为显示文本完成,但是在这里我想组合这些列(first_name和last_name)并用作显示文本.
原文链接:https://www.f2er.com/php/131357.html在模型中
function getClients() { $Clients = Client::model()->findAll(); $list = CHtml::listData($Clients,'client_id','first_name'); return $list; }
在视野中
echo $form->dropDownList($model,$model->getClients());