Form inside TbNavbar Dropdown Items

后端 未结 2 407
死守一世寂寞
死守一世寂寞 2021-01-22 05:12

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

2条回答
  •  情深已故
    2021-01-22 06:02

    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(
    
                        ),
                   ),
    
                  ''
                ),
            )); ?>
    

提交回复
热议问题