Yiibooster Tbbuttongroup Within Tbnavbar

Hi,

I’ve been trying to display a button group within my navbar with YiiBooster. I am getting th following error so I’m just wondering what is the proper way (if at all) to be able to diplay a buttonGroup within the navbar?


	


$this->widget('bootstrap.widgets.TbNavbar', array(

...

stuff

...

'items' => array(

	array(

			'class' => 'bootstrap.widgets.TbButtonGroup',

			'htmlOptions'=>array('class'=>'pull-right'),

			'items'=>array(

				array('label'=>'Register', 'url'=>array('/register'), 'visible'=>Yii::app()->user->isGuest),

			)	

		),



this gives me a Property "TbButtonGroup.items" is not defined error.

Thanks

Jonny

Ahhh,

Sorted it. Sorry. my mistake for included items in the buttongroup. Should have been buttons.