我正在使用带有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=>"inline tight"}" 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不更新输入类?