简单的形式。以表格/网格格式显示复选框

时间:2015-10-07 11:01:49

标签: ruby-on-rails checkbox twitter-bootstrap-3 simple-form

我正在使用simple_form创建一个显示一堆复选框的表单。这些复选框来自“关联”(即从数据库中提取:它们的数量可以变化)。

Simple_form以列格式输出它们(每行一个)。我想将它们分配到3列(每行3列,很好地对齐)。

这是我的代码:

<%= simple_form_for @user_profile, url: wizard_path, method: :put do |f| %>
    <%= f.association :yoga_styles, as: :check_boxes, label: false%>
    </BR>
    <%= f.button :submit, "Continue" %>
<% end %>

我在Rails 4.2.3和Bootstrap 3上。

0 个答案:

没有答案