Eric
Eric

Reputation: 3802

Kaminari.paginate_array ArgumentError (wrong number of arguments (2 for 1)

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.

Upvotes: 2

Views: 1740

Answers (1)

Pavan
Pavan

Reputation: 33542

ArgumentError (wrong number of arguments (2 for 1)

From the docs,

You can specify the total_count value through options Hash.

Example

@paginatable_array = Kaminari.paginate_array([], total_count: 145).page(params[:page]).per(10)

So in your case it should be

@clients = Kaminari.paginate_array([items], total_count: items.count).page(page)

Upvotes: 4

Related Questions