我想在我的Formtastic表单中选择部分链。但是,是否可以为将来的AJAX替换设置多个选择的自定义ID?
这不起作用:
<%= semantic_form_for [:admin, @production_year] do |f| %>
<%= f.inputs do %>
<%= f.input :car_model, :label => "CarModel", :as => :select, :collection => Brand.find(:all, :order => "name ASC"), :id => "brand_id" %>
<% end %>
<% end %>
答案 0 :(得分:15)
选项应该传递给input_html哈希,如下所示:
<%= f.input :car_model, :input_html => { :id => "brand_id" } %>