下面的代码将type
在下拉列表中列出。
如何将此下拉列表更改为复选框列表?
<%= search_form_for @q do |f| %>
<%= f.label :name_cont %>
<%= f.text_field :name_cont %>
<%= f.label :type, "Type"%>
<%= f.select :type_id_eq, PartType.all.map{|x| [x.name, x.id]} %>
<br/><br/>
<%= f.submit %>
<% end %>