Helpme with CJuiAccordion

Hello, I am making a purchase request and in this I am using the widget CJuiAccordion I have 2 panels:

  • Detail Header

  • Position detail

I have 1 form in each panel, what happens to me is that I saved in the database that is in the first panel in this case "header detail" and "detailed position" does not save, switch panels are first places Position and store the details right but not the detail header saved. I am using MultiModelForm that I have included in the detail of left position of the widget code.

Insert data into the database by phpmyadmin, and then modify a purchase to see if he had entered it returned to the eye, and the result was that I returned.

Data that are entered at position 2 of the panel does not store data in the database any suggestions?

PS: Sorry for my English

Widget Code:




<?php

$this->widget('zii.widgets.jui.CJuiAccordion', array(

    'panels'=>array(

        

        // panel 3 contains the content rendered by a partial view

       

	

           'Detalle Cabecera' => $this->renderPartial('tabs', array('model' => $model),true),

           'Datos PosiciĆ³n' => $this->renderPartial('multi', array('model'=> $model, 'member'=>$member, 'validatedMembers'=>$validatedMembers),true, null),

	

	

    ),    

	

    

    // additional javascript options for the accordion plugin

    'options'=>array(

        'animated'=>'bounceslide',

	'collapsible'=>true,

        'active'=>false,

        'alwaysopen'=>true,

	

    ),

));


?>



Up help me