Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
It's probably just a typo but $('#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

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.