我有一张表格
= simple_form_for([:admin, @user]) do |f|
= f.input :email
= f.association :roles, as: :select
- if @user.has_role? :moderator
= f.input :question, as: :boolean
= f.input :answer, as: :boolean
= f.input :comment, as: :boolean
= f.submit 'Update'
使用bootstrap 3.1复选框按预期工作,但是3.2没有显示,只显示标签。 形式的Html代码:
<label class="checkbox"><input checked="checked" class="boolean optional" id="user_question" name="user[question]" type="checkbox" value="1"></label>
它可以是什么?
答案 0 :(得分:0)
只需添加.form-inline即可。