<?php $this->widget('zii.widgets.grid.CGridView', array(
'id'=>'message-grid',
//'selectionChanged'=>'js:function(id){location.href = "'.$this->createUrl('view').'/id/"+$.fn.yiiGridView.getSelection(id);}',
'selectionChanged'=>'function(id){location.href = "'.$this->createUrl('view').'&id="+$.fn.yiiGridView.getSelection(id)+"&f=s";}',
//'dataProvider'=>$model->sentitem(),
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
array(
'class'=>'CCheckBoxColumn',
'id'=>'chk',
'selectableRows'=>'2',
//'htmlOptions'=>array('width'=>'40px'),
),
)、));
選択を変更してシングル クリックするためのコードを既に作成しました。jquery dbclick 関数を使用して ID にアクセスしようとしています。dbclick で変更された選択を使用して ID をフェッチする方法がわかりません。