how can I cache a partial retrieved through link_to_remote in rails?
        Posted  
        
            by Angela
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Angela
        
        
        
        Published on 2010-06-08T04:55:35Z
        Indexed on 
            2010/06/08
            5:02 UTC
        
        
        Read the original article
        Hit count: 188
        
I use link_to_remote to pull the dynamic contents of a partial onto the page. It's basically a long row from a database of "todo's" for the day.
So as the person goes through and checks them off, I want to show the updated list with a line through those that are finished.
Currently, I end up needing to click on the link_to_remote again after an item is ticked off, but would like it to redirect back to the "cached" page of to-do's but with the one item lined through.
How do I do that?
Here is the main view:
<% @campaigns.each do |campaign| %>
<!--link_to_remote(name, options = {}, html_options = nil)-->
<tr><td>   <%= link_to_remote(campaign.name, :update => "campaign_todo",
                                :url => {:action => "campaign_todo",
                                         :id => campaign.id 
                                        }
                      ) %>  </td></tr> 
<% end %>
</table>
<div id="campaign_todo">
</div>
I'd like when the New/Create actions are done to go back to the page that redirected it there.
© Stack Overflow or respective owner