Recent Changes - Search:

edit SideBar


Firefox 2
Get Thunderbird!

PaginateOverACollection

def paginate_collection(collection, options = {})
    default_options = {:per_page => 10, :page => 1}
    options = default_options.merge options

    pages = Paginator.new self, collection.size, options[:per_page], options[:page]
    first = pages.current.offset
    last = [first + options[:per_page], collection.size].min
    slice = collection[first...last]
    return [pages, slice]
end

Edit - History - Print - Recent Changes - Search
Page last modified on February 17, 2007, at 06:35 AM