Yii Bootstrap 1.2.0 Btn-Group Fail

The button group in the new YiiBootstrap 1.2.0 don’t work egual 1.1.0 version.

When add a custom class togheter the class btn-group, the menù under the button don’t show.

In YiiBootstrap 1.1.0 work fine.

Example

<div class="btn-group"></div> -->work

<div class=“btn-group myclass”></div> -->don’t work

[font="Arial"][size="2"]Si es del yii-bootstrap 1.2.0 del que hablas lo puedes hacer así:[/size][/font]

[font="Arial"][size="2"]

[/size][/font]

[font="Arial"][size="2"]

[/size][/font]

[font=“Arial”][size=“2”]<?php $this->widget(‘bootstrap.widgets.TbButtonGroup’, array( [/size][/font]

[font=“Arial”][size=“2”] ‘buttons’=>array([/size][/font]

[font=“Arial”][size=“2”] array(‘label’=>‘Button 1’, ‘url’=>’#’),//esto serán los botones internos [/size][/font]

[font=“Arial”][size=“2”] array(‘label’=>‘Button 2’, ‘url’=>’#’), [/size][/font]

[font=“Arial”][size=“2”] array(‘label’=>‘Button 3’, ‘url’=>’#’), [/size][/font]

[font=“Arial”][size=“2”] array(‘label’=>‘Button 4’, ‘url’=>’#’), [/size][/font]

[font="Arial"][size="2"] ),[/size][/font]

[font="Arial"][size="2"] )); ?>[/size][/font]

[font="Arial"][size="2"] [/size][/font]

[font="Arial"][size="2"] o de lo contrario puedes hacerlo así:[/size][/font]

[font="Arial"][size="2"] [/size][/font]

[font="Arial"][size="2"] <div class="btn-group">[/size][/font]

[font="Arial"][size="2"] <button class="btn btn-primary">Button 1</button>[/size][/font]

[font="Arial"][size="2"] <button class="btn">Button 2</button> [/size][/font]

[font="Arial"][size="2"] <button class="btn">Button 3</button>[/size][/font]

[font="Arial"][size="2"]</div>[/size][/font]