Skip to content

jake3030/sunspot_with_kaminari

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sunspot_with_kaminari

sunspot_with_kaminari extends sunspot to have the required methods for pagination with kaminari.

jake3030 version* Adding support for kaminari paginatable array in results collection.

Installation & Usage

on Gemfile

  gem 'kaminari'
  gem "sunspot_rails"
  gem "sunspot_with_kaminari", '~> 0.1'

on the controller

  @products ||= Product.search do
    keywords params[:search]
    paginate :page => params[:page], :per_page => 20
  end

on the view you want to do something like this:

  <ul>
    <% @products.results.each do |product| %>
    <li><%= product.name %></li>
    <% end %>
  </ul>
  
  <%= paginate @products, :window => 1 %>

About

Pagination with kaminari for sunspot

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%