我有问题要按网格中的相关对象进行过滤。
我有以下两种模式:
Model Foo:
id
name
create_date
Model Boss:
id
foo_id (FK to Foo Model)
create_date
现在,我以这种方式列出我所有的Boss对象:
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'boss-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'ID',
array(
'header'=>'Foo', //the header cell text.
'name' => 'foo.name', //the attribute name of the data model.
'value' => '$data->foo->Name',
'filter' => CHtml::activeTextField(Foo::model(),'Name'),
),
'CREATE_DATE',
),
)); ?>
问题是FK是数字但表示(标签)是文本。所以我需要知道如何将此对象转换为网格中的过滤器。
答案 0 :(得分:1)
您必须在模型中的搜索条件中包含外键:
首先:
array(
'header'=>'Foo',
'name' => 'foo.name',
'value' => '$data->foo->Name',
'filter' => CHtml::textField('foreign',''), // change like this
),
然后在模型中,搜索方法:
$criteria->with('NameOfRlation');
$f = Yii::app()->request->getParam('foreign' , null);
if(!empty($f))
$criteria->compare('t.Field' , $f , true);