使用simple_form构建器input_html选项进行ransack

时间:2015-01-12 20:47:08

标签: ruby-on-rails-4 simple-form ransack

我正在使用带有simple_form(3.1.0)

的ransack(1.5.1)

我使用以下搜索表单

<%= search_form_for @search, :builder => SimpleForm::FormBuilder do |f| %>

和以下input_field

<%= f.input_field(:contact_groups_name_eq_any, input_html: { class: 'inline tight' },
                                    collection: @contact_group_names, as: :check_boxes) %>

我得到以下输出:

<div class="checkbox"><input checked="checked" class="check_boxes required" id="q_contact_groups_name_eq_any_family" input_html="{:class=>&quot;inline tight&quot;}" name="q[contact_groups_name_eq_any][]" value="Family" type="checkbox"><label class="collection_check_boxes" for="q_contact_groups_name_eq_any_family">Family</label></div>

为什么input_html:hash不更新输入类?

0 个答案:

没有答案