Created
July 28, 2011 19:21
-
-
Save samuelkadolph/1112311 to your computer and use it in GitHub Desktop.
+ button to add nested object to fields_for & accepts_nested_attributes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= form_for(@foo) do |f| %> | |
<%= f.fields_for :bars do |b| %> | |
<%= b.text_field :name %> | |
<% end %> | |
<%= f.submit "+", :name => "actions[add_bar]" %> | |
<div class="actions"> | |
<%= f.submit %> | |
</div> | |
<% end %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class FoosController < ApplicationController | |
respond_to :html | |
def create | |
@foo = Foo.new(params[:foo]) | |
if params[:actions][:add_bar] | |
@foo.bars.build | |
render "new" | |
else | |
flash[:notice] = "Foo was successfully created." if @foo.save | |
respond_with(@foo) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment