Radio Boxes
Closed this issue · 3 comments
D-Bullock commented
Hey,
I love what you have done, but I seem to have hit a problem that hasn't been accounted for,
I have the following code:
<label class="radio-inline">
<input type="radio" name="gender" ng-model="model.gender" required value="Male" />Male
</label>
<label class="radio-inline">
<input type="radio" name="gender" ng-model="model.gender" required value="Female" />Female
</label>
For a button group, there isn't meant to be any form-control class on the inputs.
Is there any way of using your plugin to show errors here?
D-Bullock commented
Actually, I solved it by creating the following CSS.
.radio-inline .form-control {
display: initial;
width: initial;
height: initial;
}
It seems a bit hackish though. Feel free to close this issue unless there's a better way.
paulyoder commented
version 2.2.0 now has support for radio boxes. I'll close this issue, but feel free to re-open it if you run into any issues.
chrisfosterelli commented
Did the revert in version 2.3.0 break radio button support @paulyoder?