doushan1157 2014-02-08 23:24
浏览 7
已采纳

条件下拉列表Yii中的文本值

I have a drop down list but I the text value is dependent on another value from the same model.

What I want to happen is if the row from a model has a client_type_id value of 1 then the drop down text should be company_name else it will be the first_name. Kindly refer to the code below.

<?php echo $form->dropDownListRow($model , 'client_id', CHtml::listData(Client::model()->findAll(), 'id', '$data->client_type_id == 1 ? $data->company_name : $data->first_name')); ?>

Is it even possible to achieve it like this?

  • 写回答

1条回答 默认 最新

  • dongshijiao6890 2014-02-09 00:07
    关注

    PHP 5.3+ and Yii 1.1.13+

    You can use an anonymous function:

    echo $form->dropDownListRow($model , 'client_id', 
        CHtml::listData(Client::model()->findAll(), 'id', function($data){
            return $data->client_type_id == 1 ? $data->company_name : $data->first_name
        })
    );
    

    Yii < 1.1.13 and/or PHP <5.3

    You can use the CActiveRecord::afterFind() method to initialize a variable say $list_info and use this as your field:

    class MyClass extends CActiveRecord{
        public $list_info;
        ...
    
        public function afterFind(){
            $this->list_info=$this->client_type_id == 1 ? $this->company_name : $this->first_name
        }
    }
    

    The drop down list then becomes

    $form->dropDownListRow($model , 'client_id', CHtml::listData(
        Client::model()->findAll(), 'id', 'list_info')
    );
    

    Reference: http://www.yiiframework.com/doc/api/1.1/CHtml#listData-detail

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部