我已經創建瞭如下的bootstrap.widgets.TbTabs,如何在客戶端動態添加新選項卡。是否有任何事件使用我可以添加新標籤就像下面的代碼中的「顯示」事件。在YiiBooster TbTabs部件中動態添加選項卡
<?php $this->widget('bootstrap.widgets.TbTabs', array(
'id' => 'mytabs',
'type' => 'tabs',
'tabs' => array(
array('id' => 'tab1', 'label' => 'Tab 1', 'content' => $this->renderPartial('tab1', null, true), 'active' => true),
array('id' => 'tab2', 'label' => 'Tab 2', 'content' => 'loading ....'),
array('id' => 'tab3', 'label' => 'Tab 3', 'content' => 'loading ....'),
),
'events'=>array('shown'=>'js:loadContent')
));?>
@請看看這個鏈接http://stackoverflow.com/questions/20700642/how-to-add-child-tab-onclick-of-button-in-yii-framework我們可以讓這個標籤結構在YiiBooster – Silviaa