Yii 提示empty不显示clistdata

Yii 提示empty不显示clistdata,yii,Yii,当列表为空时,它不会显示。当我删除dropdownlist的第3个参数中的数组时,它会出现,但如果发生这种情况,我的类将无法工作。我错过了什么 array('name'=>'response', type'=>'raw', 'header'=>'Send a Note', 'value'=>function($data,$row){ if ($data->response_id ===null ||$data->response

当列表为空时,它不会显示。当我删除dropdownlist的第3个参数中的数组时,它会出现,但如果发生这种情况,我的类将无法工作。我错过了什么

array('name'=>'response',
    type'=>'raw',
    'header'=>'Send a Note',
    'value'=>function($data,$row){
    if ($data->response_id ===null ||$data->response_id ==11)
        return CHtml::dropDownList('Response','',
        CHtml::listData(table::model()->findAll(),
                'response_id','response','',array('prompt'=>'Select a message')),
        array('class'=>'changeStatus','id' => $data->response,'url'=>Yii::app()->createURL('url')));
        else return $data->response->response;
        }
),

什么没有显示?下拉列表?下拉列表正在显示,。。未显示空的提示选择消息