I am using a rails application with the kaminari
gem and I have a common array that I am trying to page using the paginate_array method but I am getting a ArgumentError (wrong number of arguments (2 for 1) exception. Here is the code:
def index
page = params[:page] || 1
items = ClientReports.search(params[:search], sort_column, sort_direction)
@clients = Kaminari.paginate_array(items, total_count: items.count).page(page)
respond_with(@clients)
end
The line: Kaminari.paginate_array(items, total_count: items.count).page(page)
is the one throwing the error. Why is this a problem? From what I can see the docs show this should be ok.
@clients = Kaminari.paginate_array([items], total_count: items.count).page(page)
– Dive