Displaying 1 result from an estimated 1 matches for "image_pag".
Did you mean:
image_tag
2006 Jan 29
0
Pagination and AJAX
How does one do pagination with link_to_remote calls so the
pagination can be done with AJAX? For example, this obviously works
out of the box with the standard scaffold:
<%= link_to ''Next page'', { :page => @image_pages.current.next } if
@image_pages.current.next %>
to get users to the next page.
The tutorial at: http://wiki.rubyonrails.com/rails/pages/How+to
+Paginate+With+Ajax is helpful. The last solution at the bottom of
the page seems the best, but where would an image reference go? How
would I...