我正在使用http://yii-booster.clevertech.biz/components.html#navbar并且我想生成导航栏。我有一个问题,因为我必须pull-right
在其中一个项目上使用 css 类。
为什么不htmlOptions
工作?如何pull-right
在“用户”项上使用?
$this->widget('bootstrap.widgets.TbNavbar', array(
'brand' => CHtml::encode($this->pageTitle),
'brandUrl' => '#',
'collapse' => true,
'type' => 'inverse',
'items' => array(
array(
'class' => 'bootstrap.widgets.TbMenu',
'items' => array(
array('label'=>'Home', 'url'=>'#', 'active'=>true),
array('label'=>'Link', 'url'=>'#'),
array('label'=>'Link', 'url'=>'#'),
array('label'=>'User (895)', 'htmlOptions'=>array('class'=>'pull-right'),
'items'=>array(
array('label'=>'Support', 'url'=>'#'),
array('label'=>'Mailing', 'url'=>'#'),
array('label'=>'Sklep', 'url'=>'#'),
array('label'=>'Profile', 'url'=>'#'),
array('label'=>'Logout', 'url'=>'#'),
)
),
)
)
)
));