The right sintax for checkbox or radio buttons group is in that case:
<div class="btn-group pull-right" data-toggle="buttons-checkbox">
<button class="btn btn-primary"
data-toggle="button">Wizard</button>
<button class="btn btn-primary"
data-toggle="button">Expert</button>
</div>
Be sure to have downloaded the relative js
2012/5/3 Bill Lazar <[email protected]>
>
> I have a simple two button group:
>
> <div class="btn-group pull-right"
> data-toggle="buttons-checkbox">
> <a class="btn" data-toggle="button">Wizard</a>
> <a class="btn active" data-toggle="button">Expert</a>
> </div>
>
> All the relevant CSS/JS is loaded (e.g., on the screen next to it is a split
> button dropdown, next row has tabs, etc...), using 2.0.3. As I've included
> the data-toggle attribute I don't think I need to do anything in JS to
> activate.
>
> However clicking the inactive button doesn't toggle the active state of
> either button. Given this is so straightforward I'm confused by it not
> working and would appreciate assistance.
>
> Thanks,
> Bill L