うまくいけば、より明確になるようにリクエストを編集しました。以前の選択ボックスに基づいて動的にパーシャルをレンダリングする必要があります。
REQUEST は PRODUCT に属しています
PRODUCT は CATEGORY に属しています
CATEGORYには多くの製品があります
PRODUCT には多くの REQUESTS があります
ユーザー ヒット フォーム: create_request.html.erb
ユーザーがカテゴリを選択すると、製品の選択リストが表示されます (Railscast 88 のような動的選択ボックス)。
ここで必要なのは、選択された製品に基づいてさまざまな部分形式をレンダリングすることです。私はjqueryが苦手です。
create_request.html.erb:
<%= javascript_include_tag "dynamic_products.js" %>
<% form_for :request, :url => {:controller => :requests, :action => :create_request, :id => params[:id]} do |f| %>
<label>Select Category:</label>
<%= select( "request", "category_id", Category.find( :all).collect { |c| [c.name, c.id] })%></br>
<div id="product_field">
<label>Select Product</label>
<%= select( "request", "product_id", Product.find( :all).collect { |p| [p.name, p.id] })%></br>
</div>
#### and here is where I need help:
#### if request.product_id = 1, render partial _form1
#### if request.product_id = 2, render partial _form2
<button type="submit">Submit</button>
<% end %>
dynamic_products.js.erb:
var products = new Array();
<% for product in @products -%>
products.push(new Array(<%= product.category_id %>, '<%=h product.name %>', <%= product.id %>, <%= product.active %>));
products.sort()
<% end -%>
function categorySelected() {
category_id = $('request_category_id').getValue();
options = $('request_product_id').options;
options.length = 1;
products.each(function(product) {
if (product[0] == category_id && product[3] == 1) {
options[options.length] = new Option(product[1], product[2]);
}
});
if (options.length == 1) {
$('product_field').hide();
} else {
$('product_field').show();
}
}
document.observe('dom:loaded', function() {
categorySelected();
$('request_category_id').observe('change', categorySelected);
});