I am using Yii EDataTables Extension : http://www.yiiframework.com/extension/edatatables/
I have Widget of EDataTables as follow
$this->createWidget(
'ext.EDataTables.EDataTables', array(
'id' => 'items',
'dataProvider' => $dataProvider,
'ajaxUrl' => '/ajax-update',
'columns' => array(array(
'user_id',
'email',
'name',
'created_at:date:Updated',
'updated_at:date:Updated',
)
),
'options' => array(
'bStateSave' => false,
'bPaginate' => true,
),
)
);
I want to pass custom ( value,array or object to the widget so i can use it in the row value )
I have looked around many places but i couldn't find way to do it. Could you please advice how to do that ?