37

使用 Simple_form 2.0.2

使用 HAML 的简单表单代码:

= f.input :remember_me, as: :boolean, inline_label: 'Remember me'

但它呈现了这一点:

<div class="control-group boolean optional">
  <label class="boolean optional control-label" for="admin_remember_me">Remember me</label>
  <div class="controls">
    <input name="admin[remember_me]" type="hidden" value="0" />
    <label class="checkbox"><input class="boolean optional" id="admin_remember_me" name="admin[remember_me]" type="checkbox" value="1" />Remember me</label>
  </div>
</div>

如何删除呈现的第一个标签,以便我只有内联标签?

4

6 回答 6

88

您可以使用:

= f.input :remember_me, as: :boolean, inline_label: 'Remember me', label: false
于 2012-08-27T19:48:54.277 回答
27

经过大量的 Google fu 找到了解决方案。

使用input_field而不是input不会自动生成标签。

= f.input_field :remember_me, as: :boolean, inline_label: 'Remember me'
于 2012-08-24T18:33:48.357 回答
11

对谁不起作用

= f.input_field ...

使用这种方式

= f.check_box ...

于 2013-09-20T09:50:02.710 回答
7

使用 simple_form 2.1.0 和 rails 3.0.20,此处列出的解决方案均无效(我不想使用 f.input_field,因为它承认失败)。

缺少的部分是boolean_style选项:

options.merge!({label: false, boolean_style: :inline})

我建议您为此创建一个自定义输入(例如:inline_checkbox)

boolean_style 默认配置为 :nested,我认为:

# Defaults to :nested for bootstrap config.
#   :inline => input + label
#   :nested => label > input
config.boolean_style = :nested
于 2014-02-12T05:28:07.383 回答
0
.control-group.error .help-inline {
  display: none;
}

这应该有效,它适用于 rails 3.2 和 simple_form 2.x+

于 2013-02-03T21:17:45.833 回答
0

也许为时已晚,但受到 gamov 回答的启发,我已经从初始化文件“ config/simple_form_bootstrap.rb ”中的内联引导复选框中将其作为自定义包装器:

config.wrappers :horizontal_radio_and_checkboxes, tag: 'div', class: 'form-group', error_class: 'has-error' do |b|
   b.use :html5
   b.optional :readonly

   b.use :label, class: 'col-sm-3 control-label'
   b.use :input
   b.use :error, wrap_with: { tag: 'span', class: 'help-block' }
   b.use :hint,  wrap_with: { tag: 'p', class: 'help-block' }
 end

生成这个html:

 <div class="form-group boolean optional user_admin">
    <label class="boolean optional col-sm-3 control-label" for="user_admin">Admin</label>
    <div class="col-sm-9 checkbox-inline">
    <input name="user[admin]" value="0" type="hidden">
    <input class="boolean optional" id="user_admin" name="user[admin]" value="1" type="checkbox">
  </div>

于 2014-11-10T15:33:10.633 回答