I've looked at other answers here (e.g. Submit a Form via AJAX and Return a Partial View - MVC2 and javascript form submit return value ) but I'm not seeing how they apply. From reading recommendations on other sites I came up with the following.
In Rails 3.2 I have a form with a button called special save and added some coffeescript to it for the ajax submit.
# To save the new agent form without reloading the page
$('#specical save').click ->
$(this).parents("form").submit()
I then try to get the response with
$('form#new_agent').on 'ajax:success', (xhr, data, status) ->
$('#all-agents-table').append(data).show()
The form is
<%= form_for @agent, :remote => true, :html => { :class => 'form-horizontal', 'data-type' => :html } do |f| %>
...
<various fields>
...
<div class="form-actions">
<%= f.submit 'Add new agent', :class => 'special-save' %>
</div>
<% end %>
This is currently returning the new layout for the model generated by rails. In fact I want to just have the server return a partial. In the create method I have the following code:
def create
...
respond_to do |format|
if @agent.save
format.html { redirect_to @agent, notice: 'Agent was successfully created.' }
format.js { render 'new_agent_row', :formats => :html, :layout => false }
format.json { render json: @agent, status: :created, location: @agent }
else
format.html { render action: "new" }
format.js { render :action => 'new' }
format.json { render json: @agent.errors, status: :unprocessable_entity }
end
end
end
Why is it not returning the partial? It's definitely saving correctly (confirmed with some print statements and checking the database).
Thanks for your help.
$('#specical save')should be$('.specical-save'). What does the development.log show? Also, where is the partial located? – veritas1 Aug 14 '12 at 8:54