Quantcast
Channel: Yii Framework Forum
Viewing all articles
Browse latest Browse all 18717

Cjuitabs Showing Multiple Tabs In Content

$
0
0
Hi Everyone,

i noticed when adding "id" to CJuiTabs using the following format, some tabs render multiple tabs in the content rather than just the active one.

Here is the code:

$this->widget('zii.widgets.jui.CJuiTabs', array(
    'tabs'=>array(
        'Government'=>array('id'=>'Government', 'content'=>$govContent),
        'Manufacturing & Distribution'=>array('id'=>'Manufacturing & Distribution', 'content'=>$mfgContent),
        'Retail'=>array('id'=>'Retail', 'content'=>$retailContent),
    ),
    'options'=>array(
        'collapsible'=>false,
        'active'=>$tab,
        'show'=>'fadeIn',
   	
    ),
    'htmlOptions'=>array(
        'style'=>'width:910px; height: auto;'
    ),
        
    'themeUrl'=>Yii::app()->baseUrl.'/css/JuiTabs',
    'theme'=>'custom',
        
    'cssFile'=>'jquery-ui-1.10.1.custom.css',
));



If I use the format as below without the id, it works fine.


$this->widget('zii.widgets.jui.CJuiTabs', array(
    'tabs'=>array(
     	'Government'=>$govContent),
        'Manufacturing & Distribution'=>$mfgContent),
        'Retail'=>$retailContent),
        ...



Any ideas on what's going on?

Thanks,

Viewing all articles
Browse latest Browse all 18717

Trending Articles