I'am a stackoverflow newbie. Please be merciful ;-)
I have a simple has_many association with accepts_nested_attributes_for. Everything works fine. But I what I really need are the return values for the updated and/or inserted children, because I send the form per Ajax and need to manipulate only these children's form fields after successfully post/put.
EDIT:
Models:
class Pirate < ActiveRecord::Base
has_many :ships
accepts_nested_attributes_for :ships, :reject_if => proc { |a| a[:name].blank? }, :allow_destroy => true
end
class Ship < ActiveRecord::Base
belongs_to :pirate
end
Controller:
def new
@pirate = Pirate.new
4.times { @pirate.ships.build }
end
def edit
@pirate = Pirate.find(params[:id])
end
def create
@pirate = Pirate.new(params[:pirate])
respond_to do |format|
if @pirate.save
format.js
else
format.js
end
end
end
def update
@pirate = Pirate.find(params[:id])
respond_to do |format|
if @pirate.update_attributes(params[:pirate])
format.js
else
format.js
end
end
end
View:
<%= form_for @pirate, :remote => true do |f| %>
<%= f.label :name, "Pirates Name" %>
<%= f.text_field :name %>
<%= f.fields_for :ships do |ship| %>
<
<%= f.label :name, "Ship Name" %>
<%= ship.text_field :name %>
<% end %>
<%= f.submit %>
<% end %>
update.js.erb:
<% @pirate.only_updated_ships.each do |u| %>
alert("<%= u.id %>");
do something...
<% end %>
<% @pirate.only_newly_inserted_ships.each do |i| %>
alert("<%= i.id %>");
do something...
<% end %>
So, I have a remote call here and a create.js.erb and update.js.erb where I want to work with the returned updated and/or inserted children objects.
The problem is that you only get the @pirate as a return value for the successful post/put. And calling @pirate.children will give you of course all children.
Hope my problem is clearer now?