Advertisement
Guest User

Untitled

a guest
May 13th, 2012
624
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. Linking to anchor tags with will_paginate in Rails 3.0.10
  2. <%= will_paginate @posts, :params => {:anchor => i} %>
  3.  
  4. <%= link_to(i, subject_topic_path(@subject, @topic, :anchor => i), {:name => i}) %>
  5.  
  6. <%= link_to "Last Post Created:", subject_topic_path(s.subject, s, :anchor => s.posts.count)%>
  7.  
  8. <%= will_paginate @posts %>
  9.  
  10. <%= link_to "Last Post Created:", subject_topic_path(s.subject, s, :page => x, :anchor => s.posts.count)%>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement