0
我有一個CGridView,一個特定的列是CLinkColumn。本專欄的頁腳目前以純文本形式出現,我也需要將它鏈接到超鏈接。在CGridView,Yii中鏈接頁腳文本1.1.15
$this->widget('zii.widgets.grid.CGridView', array(
'dataProvider'=>$provider_sales,
'columns'=>array(
...,
array(
'header'=>'Status',
'class'=>'CLinkColumn',
'urlExpression'=>function($data){ return ...},
'footer'=> number_format($totals['status']),
),
),
));
如何將其轉換爲超鏈接? 現在我只需要一個腳註項目來超鏈接,這可能會改變明天。