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 have a form that when I click submit, should update a partial that is on the same page... When I place this here:

page.replace_html 'show_cards_div', 'Hello'

It does just as it should, display hello when I need it to. But when I make it into this....

page.replace_html 'show_cards_div', :partial => "reloadThisPartial"`

It simply does not do anything. What am I doing wrong?

share|improve this question

1 Answer

up vote 5 down vote accepted

The request might not be an Ajax call. Make Ajax call. User remote_form_for instead of form_for or use jquery.form for sending ajax calls to controller. If you are using jquery then do something like:

<%= javascript_include_tag "jquery-1.4.4.min.js", "jquery.form" %>
<%= form_for :user, :url => {:controller =>  "come_controller",:action => "some_action"}, :html => {:id => 'form_id', :class => 'cmxform', :onsubmit => "return false;"} do |f| %>
......................................
<% end %>

<script type="text/javascript">
$('#form_id').submit(function() {
var container = $("#show_cards_div");
            $(this).unbind('submit').ajaxSubmit({
              success: function(data) {
                     container.html(data);
              }
            })
            return false
          });
</script>

in controller do something like this.

render :partial => "reloadThisPartial", :layout => false, :locals =>{:users =>@users}
share|improve this answer
Thanks! Modified it a bit and it works well! – Keenan Thompson May 28 '11 at 16:09

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.