Cjuitabs Problem With Renderpartial Loading Form.css

Hello, this is my code and i’ve got a problem with loading css in renderPartial





<?php $this->widget('zii.widgets.jui.CJuiTabs', array(

        'tabs'=>array(

            'Упрощённая форма'=> $this->renderPartial('_reg-lite',array('model' => $model), $this,true),

            'Полная форма'=> $this->renderPartial('_reg-full',array('model' => $model), $this,true),

        ),

        'options' => array(

            'hide' => 'fade',

            'show' => 'fade',

        )

    ));

?>



it is what i need -

it is what i have got - [size="2"]

[/size]

in the _form


<?php $form=$this->beginWidget('CActiveForm', array(

	'id'=>'user-education-form',

	'enableAjaxValidation'=>true,

)); ?>

enable this option, i think it should work… in the same controller action enable the ajaxValidation


// Uncomment the following line if AJAX validation is needed

    // $this->performAjaxValidation($model);

it should be like this… you have to uncomment the second line… :)