I have a page called /index and you can add a House and Dog. The page starts out blank but has links on the side that you can click to dynamically bring up one of the forms. These forms are in their own partials.
I will use the Dog model for this question/example. A Dog belongs to a House.
class Dog
attr_accessible :name, :primary_color, :secondary_color, :house_id.........
belongs_to :house
end
DogsController
def new
@dog = Dog.new
respond_to do |format|
format.js
end
end
dogs/_form.html.erb
<%= simple_form_for(@dog, :remote => true) do |f| %>
<%= render :partial => "shared/error_message", :locals => { :f => f } %>
<%= f.input :name %>
<%= f.input :primary_color %>
<%= f.input :secondary_color %>
<%= f.association :house, :prompt => "Select a House" %>
<%= f.button :submit, 'Done' %>
<% end %>
PagesController
def index
respond_to do |format|
format.html
end
end
pages/index.html.erb
<li><%= link_to "Dog", new_dog_path, :remote => true %></li>
<div id="generate-form">
</div>
dogs/new.js.erb
$("#generate-form").html("<%= escape_javascript(render(:partial => 'dogs/form', locals: { dog: @dog })) %>");
Now sometimes though, You might be in the middle of adding a Dog but need to add the House its located at before you can continue. Right now it just erases the entire Dog form if you do that. How would I save the progress of those fields when switching to the other form? What about when a user exits the page?
