在基於YII的項目中,我有一個cgridview
。要求是將整行或每列值作爲鏈接並單擊行中的任何鏈接將觸發ajax調用。我從這裏試過 How to display rows of CGridView as a linkYii - CGridView行/列值作爲鏈接並在點擊時調用ajax函數
但問題是,如果我把整行作爲可點擊它需要我查看操作。
如果我將一行中的單個列值作爲鏈接並調用ajax函數,我會得到以下錯誤。
Property "CDataColumn.options" is not defined.
我需要在製作整排可點擊幫助,並呼籲一個Ajax功能或各行值調用上點擊一個Ajax功能。
任何幫助或正確的方向指導非常感謝。 http://www.yiiframework.com/doc/api/1.1/CGridColumn#htmlOptions-detail
您必須使用「htmlOptions」如果你婉設置選項:如警予文檔中說
//code for making trading name column in cgridview as clickable and call ajax
<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'customer-grid',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
'id',
array(
'name' => 'trading_name',
'value' => 'CHtml::link($data->trading_name, Yii::app()
->createUrl("customer/view/",array("id"=>$data->primaryKey)))',
'type' => 'raw',
'options' => array('ajax' => array('type' => 'get', 'url'=>'js:$(this).attr("href")',
'success' => 'js:function(data) {
$("#tab1").html(data);')
),
),
'email',
'site_code',
array(
'class'=>'CButtonColumn',
),