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.

form_remote_tag is not rendering the new partial at the place where old partial was rendered.Instead it is rendered in a complete new page [http://localhost:3000/to_dos/todays_todo]. Not able to figure out where I am going wrong. Kindly Help.

<% form_remote_tag(:update => "daily_to_do_div",:url => { :action => :todays_todo}) do%>
      <%= text_field_tag :datepicker_value, nil %>
      <%= submit_tag "Add item with Ajax" %>
<% end %>

<div id="daily_to_do_div">
     <%= render :partial=>'daily_to_do', :locals => {:to_dos => @to_dos}%>
</div>

corresponding controller code is as follows

def todays_todo
     # date = Date.today
     @to_dos = ToDo.find_all_by_to_do_date(params[:datepicker_value].to_date)
     render :partial=>'daily_to_do', :locals => {:to_dos => @to_dos}
  end
share|improve this question

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.