So, i Have:
$dataProvider=new CActiveDataProvider('PolicyModel');
$this->widget('zii.widgets.grid.CGridView', array(
'dataProvider'=>$dataProvider,
'columns'=>array(
,'start_date'
,'end_date'
...
Howerver, now I need to add also model wich belgons to PolicyModel:
'holder'=>array(self::BELONGS_TO, 'ClientModel', 'holder_id'),
I need to display holder.name in my gridview. How to do this? I do not need any filters here. Simply display all Policy data + Holder names for policies.

Help













