CDataColumn link modal window

In the CGridView, I made one of the columns to link using this code


$this->widget('zii.widgets.grid.CGridView', array(

	'id'=>'user-grid',

	'dataProvider'=>$model->search(),

	'filter'=>$model,

	'columns'=>array(

		

		array(

		'name'=>'username',

		'type'=>'raw',

		'value'=>'CHtml::link(CHtml::encode($data->username), array("view", "id"=>$data->pk_user))',

      

		)

		,



Is it possible to open the link in a modal window?. Thanks

P.S. Sorry if this is posted on the wrong thread.