Post Multiple Values In Yii Editablecolumn

Hello,

I have tried passing a second varaible through url link…no luck

I have tried the params but still the variable does not get translated.

I have seen a couple people as this same question but still no answers.

Can editable column have more than pk and value posted back to the controller? And if so…HOW?

Thanks

Dennis


   array(

            'class' => 'editable.EditableColumn',

            'name' => 'sort_order',

            'sortable' => false,

            'editable' => array(

                'url' => $this->createUrl('schedule/editable'),

                'pk' => 'schedule_id',

                'placement' => 'right',

                'inputclass' => 'span3',

                'options' => array(

                    'params' => array(

                        'schedule2_id'=>'$data->schedule2_id',

                    )

                )