How To Send Additional Parameter To Submit In Editable Column In Grid

I want to send additional parameter to submit in editable column in yii grid

my editable widget code:




array(

'header'=>'Client',

		'name'=>'client_id',

		'class' => 'bootstrap.widgets.TbEditableColumn',

		'headerHtmlOptions' => array('style' => 'width: 250px'),

		'editable' => array( 

					'type'  => 'select',

					'url' => $this->createUrl('clientFiles/save'),

					'source'=>$getclients,

					'placement' => 'right',

					'options' => array('params' => array('time'=>"$data->clients->client_id"),)

					),



Error: Undefined variable: data

Yii doesn’t have any editable columns as far as I know.

Yii Bootstrap Having this http://yiibooster.clevertech.biz/components.html#editable

Well, that’s most probably not Yii core bug. Either reproduce it w/o Bootstrap or report to Bootstrap author.