Align checkboxes for f.collection_check_boxes with Simple_Form

前端 未结 4 2037
醉梦人生
醉梦人生 2020-12-16 18:08

I am using RoR and I am using the Simple_Form gem for my forms. I have an object relation whereby a User can have multiple Roles, and during creation, the admin can select

4条回答
  •  攒了一身酷
    2020-12-16 19:04

    In the latest 2.1.0 branch of SimpleForm with 2.3.1.0 of bootstrap-saas, installed with bootstrap option, the collection_check_boxes method resulted in some spans to which applying the inline item wrapper class had no good effect.

    I was able to get the form to line up perfectly using the standard input, collection, :as => :check_boxes methodology. Then the inline style worked perfectly:

    <%= f.input :roles, :collection => valid_roles, :label_method => :last, :value_method => :first, :as => :check_boxes, :item_wrapper_class => 'inline'  %>
    

    My roles happen to be a simple array of arrays with value, label. Hope this helps.

提交回复
热议问题