I'm using Angular UI, I already loaded dependencies and got the module 'ui.bootstrap''.
Attempting to imitate this. This is what I'm trying:
<div class="form-group">
<div class="btn-group">
<label ng-model="reactionType" uib-btn-radio="left" uncheckable class="btn btn-sucess">Alegría</label>
<label ng-model="reactionType" uib-btn-radio="middle" uncheckable class="btn btn-default">Tristeza</label>
<label ng-model="reactionType" uib-btn-radio="right" uncheckable class="btn btn-default">Tristeza</label>
</div>
</div>
And got
so first button on the left keeps always checked while the others seem to be uncheckable. What am I missing?
