doushan1157 2014-02-09 07: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 08: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

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

报告相同问题?

悬赏问题

  • ¥15 速帮,学校需要在外上班没空
  • ¥15 人在外地出差,速帮一点点
  • ¥15 如何使用canvas在图片上进行如下的标注,以下代码不起作用,如何修改
  • ¥15 Windows 系统cmd后提示“加载用户设置时遇到错误”
  • ¥50 vue router 动态路由问题
  • ¥15 关于#.net#的问题:End Function
  • ¥15 无法import pycausal
  • ¥15 VS2022创建MVC framework提示:预安装的程序包具有对缺少的注册表值的引用
  • ¥15 weditor无法连接模拟器Local server not started, start with?
  • ¥20 6-3 String类定义