我有一个包含 20 多个标签的列表,我想在 4 列复选框网格中显示,但我不太确定最干净的方法是什么。我有以下表格:
= 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'
生成的表单应该类似于http://jsfiddle.net/LVFzK/,但我希望将逻辑限制在 awrapper
或 CSS 中,而不是手动修改 HTML。