Is it possible to use the bootstrap radio buttons i.e:
<div class="btn-group" data-toggle="buttons-radio">
<button type="button" class="btn btn-primary">someValue</button>
with a form_for in rails? There is a radio_button method:
<%= radio_button("object", "method", "someValue") %>
, but I wasn't able to style it. I didn't know if there is someway to merge the two to give the radio button the bootstrap appearance of the first snippet. Thanks, Sam