Rails 4.0.3です。 railsで複数チェックボックスの値を使ってテーブルの検索するには、check_boxタグのmultipleオプションを利用します。 例)性別判定 gender.html.haml = form_for @search_form, url: hoge_path, remote: true, html: {method: :get} do |f| %table %tr %th 性別 : %td = f.check_box :gender, {multiple: true}, 'male',nil 男性 = f.check_box :gender, {multiple: true}, 'female',nil 女性 = f.check_box :gender, {multiple: true},'empty',nil データなし <input id="search