我在gridviews中获得了基于外键关系的显示ID。如何获取值而不是ID?我的gridview中的代码如下:
$criteria->compare('education.UniversityNameid',$this->UniversityName, true);
我在代码中的网格视图
array(
'name' => 'UniversityName',
'type' => 'raw',
'value'=>'(empty($data->education->UniversityNameid))? "" : Yii::app()->params["currencySymbol"]." ".$data->education->UniversityNameid',
),
答案 0 :(得分:1)
您必须在模型“大学”中设置关系,如此
public function relations() {
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
'UniversityName' => array(self::BELONGS_TO, 'University', 'UniversityNameid'),
);
}
谢谢你可以访问名称
$data->education->UniversityName
答案 1 :(得分:0)
在模型中设置关系,如
'u' => array(self::BELONGS_TO, 'University', 'UniversityNameid'),
并像
一样访问它 'attributes'=>array(
array('name'=>'u.UniversityName',
'label'=>'University',),
),