I am using simpleform for twitter bootstrap and I am trying to style my radio buttons using the data-toggle function so that my buttons look like the radio buttons seen here:
How do I fix my code:
<%= simple_form_for @person , :html => { :class => 'form-horizontal' } do |f| %>
<%= f.input :name %>
<%= f.input :password %>
<%= f.input :country, as: :radio_buttons, :item_wrapper_class => 'btn-group' %>
<%= f.button :submit %>
<% end %>