A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Rails 3
0
votes
1answer
12 views
Rspec test describing listing items on index failing
Rspec/TDD beginner. I have a spec that is failing and I don't know why. Everything works in the browser as it should. I am using Kaminari for pagination, which defaults to 25 items per page.
spec:
...
0
votes
1answer
13 views
Pagination for partial array
My application retrieves items from remote source something like that:
# in the controller
@items = RemoteSource(params[:page])
The @items is an array but just the part of whole collection.
And ...
0
votes
1answer
16 views
View helper for mongoid-pagination?
In rails, does mongoid-pagination have a view helper that will automatically render the pagination links on a view on which it is applied? Do I have to build my own one instead.
For example with ...
0
votes
0answers
25 views
Mongoid - getting mongoid objects from array of hashes
I am trying to implement text search in MongoDB, which I have implemented using the following query (Content is a mongoid model)
output = Content.db.command(:text => "contents",
...
0
votes
0answers
50 views
Rails 3.2: Kaminari pagination, next and previous links don't work with ajax
I used kaminari to apply pagination to a list of items. Basically, the items are books and I would like to load each page using ajax.
I have a model book and partial for books, _books.html.erb, ...
0
votes
1answer
20 views
Override Kaminari configuration in Rails Engine
Hi I am currently trying to fix a problem in my engine:
I am providing a logging engine with backend views so that I need a pagination.
Since kaminari and will_paginate are cockblocking each other I ...
0
votes
1answer
19 views
kaminari pagination error undefined method
this is my post_controller
def index
@posts = Post.all.page(params[:page]).per(2)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @posts }
end
end
this is ...
0
votes
1answer
34 views
Rails / Kaminari - How to order a paginated array?
I'm having a problem ordering an array that I've successfully paginated with Kaminari.
In my controller I have:
@things = @friend_things + @user_things
@results = ...
0
votes
1answer
9 views
How to test sunspot search results or hits
I am getting an error while testing an index page which uses sunspot search.
*** NoMethodError Exception: undefined method `[]' for nil:NilClass
The code which i wrote is
@object.hits
This ...
0
votes
0answers
43 views
Rails order and kaminari pagination
I am using kaminari gem for pagination in my rails 3 application on my album controller
@albumcomments =@album.comments.order(:created_at).reverse_order.page(params[:page]).per(4)
and I am ...
1
vote
1answer
22 views
Does Kaminari load all records when call page method later?
In my User model
def activities
Activity.where actor_type: self.class.name
end
When I call current_user.activities.page(params[:page]) in controller , I want to know it will load all activity ...
0
votes
0answers
36 views
Best place to put order by logic in pageable Rails views
I've got an existing Rails app that uses decorators extensively to host business logic. The problem is that it also uses database-controlled paging extensively within these grids, and I'd like to make ...
0
votes
1answer
59 views
Pagination with Kaminari, Rails
I have a trouble with pagination with gem Kaminari!
For example, I have 18 pages,per_page for pagination - 10 pages.when I located at first link, i see 5 links. When located at 4 - 8 links to pages, ...
0
votes
2answers
59 views
Kaminari outputs **n** tables each with **n** rows
I am new to RoR so I'm missing something very basic here, but I can't figure it out. I'm using Kaminari gem for pagination in RoR application by calling in controller:
users_controller.rb:
def index
...
0
votes
1answer
71 views
Infinite scrolling in rails with haml
I'm trying to implement infinite scrolling into my project.
I have do everything as in this howto: https://github.com/amatsuda/kaminari/wiki/How-To:-Create-Infinite-Scrolling-with-jQuery
But it's not ...
0
votes
0answers
16 views
Time based Pagination
I am actually looking for a gem that provides time based pagination.
Like I have payments table, which have :payment_schaduled_on field.
And admin wants to see the entries divided on weekly bases.
...
2
votes
0answers
16 views
no method error for 'name" when I try to paginate news items with kaminari
I have been struggling to correct an issue with "undefined method name'" when I have installed the kaminari gem.
Error message:
undefined methodname' for nil:NilClass
Extracted source (around line ...
0
votes
0answers
29 views
masonry, kaminari and rails
I have a masonry grid on my homepage that uses kaminari to create an endless scroll. However, when loading the next page of results, the images overlap. They sometimes un-overlap after they finish ...
1
vote
0answers
58 views
kaminari ajax pagination works locally, not on heroku production
i am trying to get ajax pagination to work with Kaminari in my production environment on Heroku. At present running the code locally in dev mode it all seems to work. i cant seem to find what would be ...
0
votes
1answer
97 views
undefined method current_page for array kaminari
I'm trying to do pagination for products details(images), but I'm getting this error.
NoMethodError in Home#index
Showing /home/aws002/webpage/app/views/home/index.html.erb where line #6 raised:
...
1
vote
0answers
58 views
Replacing Will_paginate with Kaminari
I am replacing will_paginate with Kaminari and large part of my application uses .paginate method with multiple conditions.
@posts = Post.published.paginate(:order => 'published_at desc, id',
...
0
votes
0answers
33 views
Paginate activerecord-reputation-system with kaminari in Rails
From Combining activerecord-reputation-system queries with paging, it seems no solution somehow.
As stated in the link above, We can get kaminari working by setting kaminari first: @posts= ...
1
vote
1answer
305 views
Pagination with Elasticsearch, Tire, and Kaminari
I'm having issues getting pagination of search results to work with Elasticsearch, Tire, and Kaminari.
I am searching on all models in my application (news, paintings, books) as a general site search ...
1
vote
0answers
146 views
Sinatra with Kaminari: cannot load such file — kaminari/sinatra
I want to realize pagination in Sinatra with kaminari.
My Gemfile looks like this:
source "https://rubygems.org"
gem "sinatra"
gem "activerecord", :require => "active_record"
gem "mysql2"
gem ...
0
votes
0answers
29 views
Rails Kaminari Error two requisitions GET dont render
So, I'm using the Rails gem kaminari but I have a big problem, I make a filter im my finances, and this filter is in Ajax, so I have this in my routes.rb (I change GET to POST to make it work but it ...
1
vote
0answers
163 views
Alphabetical pagination with kaminari
I'm trying to get alphabetical pagination - so my guidelines will be listed (and grouped) alphabetically and the pagination at the top will be an alphabetical list. So far I have:
...
1
vote
1answer
67 views
Kaminari with Rails 3 not displaying
I realise paginating with Kaminari is supposed to be simple, but I seem to be missing something...
My guidelines_controller.rb index action is
def index
if params[:search].present?
@search = ...
0
votes
0answers
59 views
mongoid and kaminari throws undefined method page
When using kaminari with mongoid, I get the error
undefined method `page' for #<Mongoid::Contextual::Mongo:0x007fe48c195af0>
Not sure what is wrong. I even tried running
...
0
votes
1answer
73 views
Rails and kaminari pagination, how do you use the name of the collection in the pagination text?
I'm using kaminari for pagination in a rails project and it's working great. I've generate the views and locale files for it too.
One issue I'm having however is using the name of the collection ...
0
votes
0answers
48 views
Kaminari wrong number of arguments (0 for 1)
I'm using kaminari and bootstrap_kaminari gems in my app. Previously they worked fine, but now, I don't know if it was an update that I made, this error appears every time the method paginate is ...
0
votes
3answers
175 views
kaminari: undefined method `paginate' for #<ActiveRecord::Relation:0x007f9933670ab0>
In my controller, I have:
@bills = Bill.where(:param1 => x, :param2 => y).sort_by {|u| u.created_at}.reverse.paginate(:page => params[:page])
And I get the above-mentioned error when I try ...
1
vote
0answers
145 views
Active Admin generates a CSV with column headers only (no other rows) when viewing any page after the first
I'm using Active Admin on the back-end.
I have several pages of records. Everything works fine when I use the built-in functionality to generate a CSV file from the first page of records, but when I ...
-1
votes
2answers
526 views
Cannot load such file — rails (LoadError)
I have a Sinatra application. After adding gem 'kaminari', I start getting the error of
/var/lib/gems/1.9.1/gems/backports-2.7.1/lib/backports/tools.rb:318:in `require': cannot load such file -- ...
0
votes
0answers
40 views
kaminari pagination
I am using kaminari for paginating a table.
I have used window size '1' for paginating, this is showing 3 page numbers for me when i paginate.
enter code here .pagination#open_page
`enter code ...
0
votes
0answers
104 views
rails jquery pagination on dynamically changing elements
I have a page which displays multiple elements of a collection in backwards order by time of creation. The page has a "show more" button which picks more elements from the database using pagination ...
0
votes
1answer
165 views
Pagination in a partial using AJAX
I've asked this question before, but I think I've figured what the problem may be.
I have a page, which holds a table div. I use an AJAX call to get a table (not a partial, its just another ...
2
votes
2answers
86 views
Reverse pagination with kaminari?
I am using Kaminari 0.13.0 with RubyOnRails 3.2.8.
Lets assume I have a default ordering of my elements by crated_at, I have 8 elements in my list {a, b, c, d, e, f, g, h} and I paginate them 3 per ...
1
vote
0answers
43 views
Rails kaminari routing
I have such action in controller:
class ArtLookupsController < ApplicationController
def search
****
@pre_articles_result = ArtLookup.search(s_query)
@articles_result = ...
0
votes
0answers
43 views
Why do I get this error when I try to use pagination?
There are 3 models such as User, Community, and Uniquecode.
Then I'm using kaminari for pagination.
I'm getting this error.
undefined local variable or method `uniquecode'
Can anyone help me to ...
0
votes
2answers
103 views
Why this pagination doesn't work when using Kaminari?
Here's error and my codes. I'm using Kaminari
Error: undefined method `model_name' for #<Array:0x0000001d5abeb0>
73: <%= page_entries_info(@communities).html_safe %>
view
<%= ...
0
votes
2answers
23 views
Paginator shows weird result. Why?
I'm using kaminari for pagination.
Then I have 3 models such as User, Community, and Uniquecode.
I'm facing the problem, in which the number of shown records varie(change) at each params[:page].
...
2
votes
1answer
43 views
Why my pagination won't work fine?
I have 3 models such as User, Community, and Uniquecode.
Then I'm using kaminari for pagination.
I'm facing the problem, in which the number of uniquecode records varie(change) at each params[:page].
...
2
votes
2answers
62 views
How can I do the numbering with fetched records?
This code fetches 10 latest records
@comments = @topic.comment_threads.order("created_at DESC").page(params[:page]).per(10)
I'd like to do the numbering to the fetched records.
As it is desc ...
0
votes
2answers
99 views
kaminari page_entires_info error with I18n.locale
I use https://github.com/amatsuda/kaminari for pagination on my rails projects.
On this page https://github.com/amatsuda/kaminari/issues/257 show the issue with this helper.
I have checked with ...
0
votes
0answers
184 views
Ajax + kaminari pagination for different models on a single page and custom partial
Im using Rails 3+ and in a nut shell i have jquery tools tabs on a page that display a list of designs in one tab and a table in another tab, i wish to ajax both of these. Let me preface this by ...
1
vote
2answers
49 views
Calculate what page a model is on using kaminari and mongoid
I need to calculate what page a comment is on so I can create a direct link to it. I'm using kaminari pagination with monogid. On kaminari's wiki they have a solution on how to do it with ...
0
votes
1answer
103 views
Rails <ol> numbers reset at each page using Kaminari
Have a news story display, similar to HackerNews, that uses an <ol> tag for numbering and vote ranking. When trying to paginate using the Kaminari gem the <li> numbers of each article get ...
0
votes
1answer
184 views
kaminari and Mongoid 3 page doesn't work as expected
Hi I am trying to use kaminari as a way to page my collection of 19K results however it doesn't seem to be doing what it is saying on the tin?
I have 19293 documents:
1.9.3p194 :046 > ...
0
votes
0answers
343 views
Infinite Scroll with Kaminari, Sausage.js, jQuery and Bootstrap
For some reason, my infinite scroll triggers when I'm scrolling to the bottom of a modal (using Twitter Bootstrap). So, if a user has a modal up, the area behind the modal continues to paginate.
Is ...
1
vote
0answers
82 views
How can I set initial offset for first page in kaminari?
I need to implement some logic for to show 3 elements on the first page and by 1 element on all the next. For the first page there is no problems:
items = @model.limit(@first_page_items)
and for ...

