Hi, how can I properly add pagination to the following method?
def list @titles = current_user.titles.find(:all, order => "created_date DESC") end
Hi, how can I properly add pagination to the following method?
def list @titles = current_user.titles.find(:all, order => "created_date DESC") end
I personally use
Very simple plugin, does the job nicely.
Jim Powers wrote: