Render CJuiTabs using ajax link

view code




<?php

echo CHtml::ajaxLink('<span></span><img src="images/afr-arrow.png" width="6" height="12" />',

Yii::app()->createUrl( 'ActivityActions/reqTest01'),array( 'type' =>'GET','data' => array( 'val1' => 'A' ),'dataType' => 'text',  'update' => "#req_res"),array('class'=>'fc_righth_a'));

?>  

 <div id="req_res">

</div>




controller




public function actionReqTest01()

{

echo $this->renderPartial('slidebar');

Yii::app()->end();

	}



view\slidebar.php




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

    'tabs'=>array(

       ' Task Details'=>$this->renderPartial('/ActivityActions/task',null,true),

        'Patient Details'=>$this->renderPartial('/ActivityActions/status',null,true),

        'User Details'=>$this->renderPartial('/ActivityActions/user',null,true),

    ),

    'options'=>array(

        'collapsible'=>false,

        'selected'=>0,

    ),

	

    'htmlOptions'=>array(

        'style'=>'width:396px;',

    ),

));


?>



Here I get the slidebar page on click the link , but tab are not working, Please help me