Insert Widget Into Cgridview

it is possible insert some widget into cgridview using yii code?

for example…




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

    'id'=>'search-grid',

	'dataProvider' => $data,

	'ajaxUpdate'=>false,

	'htmlOptions'=>array('style'=>'word-wrap:break-word; width:880px;'),

	'columns' => array(


        array(

	'name' => 'play',

	'type' => 'raw',			

	'value' =>'$this->widget("xx",array());',	

	),

	));

         



Maybe this?




    array(

	'name' => 'play',

	'type' => 'raw',			

	'value' => '$this->grid->controller->widget("xx",array(),true);',	

    ),



awesome…

thanks a lot softark