src/buttons/docs/readme.md
With the buttons directive, we can make a group of buttons behave like a set of checkboxes (uib-btn-checkbox) or behave like a set of radio buttons (uib-btn-radio).
btn-checkbox-false
(Default: false) -
Sets the value for the unchecked status.
btn-checkbox-true
(Default: true) -
Sets the value for the checked status.
ng-model
<small class="badge">$</small>
<i class="glyphicon glyphicon-eye-open"></i> -
Model where we set the checkbox status. By default true or false.
ng-model
<small class="badge">$</small>
<i class="glyphicon glyphicon-eye-open"></i> -
Model where we set the radio status. All radio buttons in a group should use the same ng-model.
uib-btn-radio -
<small class="badge">$</small>
Value to assign to the ng-model if we check this radio button.
uib-uncheckable
<small class="badge">$</small>
(Default: null) -
An expression that evaluates to a truthy or falsy value that determines whether the uncheckable attribute is present.
uncheckable
<small class="badge">B</small> -
Whether a radio button can be unchecked or not.
uibButtonConfigactiveClass
(Default: active) -
Class to apply to the checked buttons.
toggleEvent
(Default: click) -
Event used to toggle the buttons.
To use tooltips or popovers on elements within a btn-group, set the tooltip/popover appendToBody option to true. This is due to Bootstrap CSS styling. See here for more information.