Skip to content

Instantly share code, notes, and snippets.

@samuelkadolph
Created July 28, 2011 19:21
Show Gist options
  • Save samuelkadolph/1112311 to your computer and use it in GitHub Desktop.
Save samuelkadolph/1112311 to your computer and use it in GitHub Desktop.
+ button to add nested object to fields_for & accepts_nested_attributes
<%= 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 %>
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