I have a scenario where I need to include an ajax form within another ajax form to allow a user to select a photo to save. It seems I need to use form_remote_tag with link_to_remote to submit it within a remote_form_for. The inner form_remote_tag now works, but now the outer remote_form_for does not work. This is what I have:
<% remote_form_for [@list, @term] do |f| %>
<div id="upload_image" onclick="$('image_upload_form').show()">upload image</div>
<div id="image_upload_form" style="display:none">
<div id="flickr_search">
<% form_remote_tag(:url => { :controller => "images", :action => "flickr_search" }) do %>
<%= text_field_tag :keywords %>
<%= link_to_remote "save", :url => {:controller => "images", :action => "flickr_search" }, :submit => "flickr_search" %>
<% end %>
</div>
</div>
<%= f.text_area :definition, :size => "33x3", :class => "textarea", :id => "definition" %>
<%= f.submit "Save" %>
<% end %>
Anyone have any ideas on how I can get these two forms to play well together?