I\'m trying to add a dropdown login form using Yii Bootstrap, like that attached tutorial, but I\'m not able to add HTML Form to TbNavbar items.
How ca
Move your button and form out of the TbMenu items array and into the TbNavbar items array. TbNavBar allows for html but not TbMenu.
widget('bootstrap.widgets.TbNavbar',array(
'items'=>array(
array(
'class'=>'bootstrap.widgets.TbMenu',
'htmlOptions'=>array('class'=>'pull-right'),
'items'=>array(
),
),
''
),
)); ?>