0

如何修改 CGridview 内的链接?

这是来自我的视图页面:

$this->widget('zii.widgets.grid.CGridView', array(
'dataProvider'=>$new,
'columns'=>array(
'book.title',
'book.author',
'book.edition',
'date_borrowed',
'borrowed_status',
'date_returned',
'returned_status',
    array(
        'class'=>'Viewonly',
    ),
)
));

然后从我的组件中:

class ViewOnly extends CButtonColumn {
    public $template = '{view}';
}

如果我单击 CGridview 中的查看按钮,我想发生什么“例如”,它会将我重定向到http://www.google.com?action=someaction。我怎样才能做到这一点?

4

2 回答 2

2

您不需要单独的按钮类。做这样的事情:

array(
   'class'=>'CButtonColumn',
   'template'=>'{view} {google}',
   'viewButtonUrl=>'Yii::app()->createUrl("http://google.com/",array("q"=>$data->name))',
   'google'=>array(
      ... Init code for this button here
   ),
)
于 2012-04-01T06:45:39.550 回答
0

这里有一个文件,你可以查一下。

顺便说一句,文件说,你可以使用url参数Array

array(
    'url' => '', //url comes here
),

编辑:数组必须在columns.

于 2012-03-08T16:09:20.487 回答