ricmic2009
New Member
I have a list of 20+ tags I want to present in a 4 column checkbox grid but I'm not quite sure what the cleanest way to do it is. I have the following form:\[code\]= simple_form_for(@fracture) do |f| = f.error_notification .form-inputs = f.input :title = f.input :summary = f.input :tag_list, :as => :check_boxes, :collection => ActsAsTaggableOn::Tag.all.map(&:name), :item_wrapper_class => 'inline'\[/code\]The resulting form should be something like this http://jsfiddle.net/LVFzK/, but I'd like to have the logic confined in a \[code\]wrapper\[/code\]or CSS rather than manually modifying the HTML.