Problem In Multiselect

hey guys, i just need some help here.

i just used yiiwheels multiselect but i dont know how to save it in database. i want to select more stock into database. but this code doesnt work properly. could please someone help me?

<div class="row">

	&lt;?php 


		&#036;list=CHtml::listData(Stock::model()-&gt;findAll(),'stock_id','name');


	?&gt;


	&lt;?php echo &#036;form-&gt;labelEx(&#036;model,'stock_id'); ?&gt;


	&lt;?php

$this->widget(‘yiiwheels.widgets.multiselect.WhMultiSelect’, array(

    'name' =&gt; 'multiselecttest',


    'data' =&gt;&#036;list


));

?>

	&lt;?php echo &#036;form-&gt;error(&#036;model,'stock_id'); ?&gt;


&lt;/div&gt;

Change




<?php

$this->widget('yiiwheels.widgets.multiselect.WhMultiSelect', array(

'name' => 'multiselecttest',

'data' =>$list

));

?>




To




<?php

$this->widget('yiiwheels.widgets.multiselect.WhMultiSelect', array(

'model' => $model,

'attribute'=>'stock_id',

'data' =>$list

));

?>




You should be able to handle it using the normal way in your controller