Answer the question
In order to leave comments, you need to log in
How to properly nest widgets in yii-booster?
It is required to nest the TbListView widget in TbTabs. That is, in the content parameter for TbTabs, display data through TbListView.
Tried to do that, didn't work.
$this->widget('bootstrap.widgets.TbTabs',array(
'type'=>'tabs',
'tabs'=>array(
array(
'label'=>'Label_1',
'content'=>array(
'class'=>'bootstrap.widgets.TbListView',
array('dataProvider'=>$dataProvider_1,'itemView'=>'_view'),
),
'active'=>true,
),
array('label'=>'Label_2','content'=>'content_2'),
array('label'=>'Label_3','content'=>'content_3'),
),
));
Answer the question
In order to leave comments, you need to log in
'content' => $this->widget('bootstrap.widgets.TbListView', array('dataProvider'=>$dataProvider_1,'itemView'=>'_view'), true),
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question