CGridview内のリンクを変更するにはどうすればよいですか?yii CButton Column
これが私の見解ページからである。その後、
$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',
),
)
));
私のコンポーネントから:私は私CGridviewのビューボタンをクリックすると、「たとえば」が起こるしたいもの
class ViewOnly extends CButtonColumn {
public $template = '{view}';
}
、それ私をhttp://www.google.com?action=someactionにリダイレクトします。これどうやってするの?
私の答えがあなたの問題を解決すれば、私はupvoteをいただければ幸いです。どうも! – acorncom