Tagged Questions
Ruby pagination library
10
votes
4answers
3k views
will_paginate with named_scopes
I'm using will_paginate for pagination, which has been working well so far, except for this one thing.
If I try to paginate a scope, for instance
class User < ActiveRecord::Base
named_scope ...
8
votes
3answers
6k views
will_paginate undefined method `total_pages'
What am I missing here? I am using the haml_scaffold generator and the pages work fine with will_paginate. When I start tinkering I end up with this 'total_pages' error and I'm not sure what I am ...
6
votes
4answers
10k views
Will Paginate Rails 3 Per Page
I am trying to limit the number of elements returned with mislav's will paginate with Rails 3. I am currently using:
# Gemfile
gem 'will_paginate', :git => ...
5
votes
2answers
228 views
How best to DRY will_paginate options
I have 8 controllers using will_paginate to paginate their index pages. I'd like to override the defaults for "Previous" and "Next" on each without having to specify the same options 8 times. Is ...
5
votes
2answers
3k views
Overriding a module method from a gem in Rails
I've got a gem (will_paginate) that's broken on my version of Oracle. The default paginate_by_sql method in the WillPaginate module is inserting an extra 'AS' into a query and causing it to fail.
...
4
votes
1answer
170 views
Sorting / Grouping records for pagination with many association-based restrictions
I'm working on an application which acts as a places directory and (currently, but maybe not always) allows filtering of a particular businesses' venues based upon 1 city, 1 neighborhood, and 1 ...
4
votes
1answer
205 views
endless pages in rails 3?
I've tried following railscast 114 and several other links to get endless pages in a rails 3 app ive been building. I'm a beginner and I have followed teachmetocode's twitter replica tutorials. Which ...
3
votes
1answer
135 views
Understanding will paginate scopes/relations
Why does Post.page(1).total_pages result in:
Post.page(1).total_pages
undefined local variable or method `total_pages' for #<ActiveRecord::Relation:0x00000006a95230>
but
...
3
votes
3answers
283 views
Customize will_paginate button
Is there any way to customize will_paginate control button to add more button like FIRST and LAST, not only previous and next buttons. Thank you.
3
votes
1answer
1k views
will paginate conflict Rails 3.1.0.rc4
I am having a problem gettin my Rails 3.1.0.rc4 application running because of an error or conflict with will_paginate gem.
The error produced when I try to start the server is as follows:
...
3
votes
1answer
362 views
rails ancestry pagination
I've just followed the Railscast tutorial:
http://railscasts.com/episodes/262-trees-with-ancestry
Is it possible to paginate results from Ancestry which have been arranged?
eg: Given I have the ...
3
votes
1answer
189 views
Using custom names with will_paginate
I'm using Mislav's will_paginate and I want to use the render option as shown in the repository's docs:
<%= page_entries_info @posts %> #-> Displaying posts 6 - 10 of 26 in total
My ...
3
votes
2answers
411 views
(will_paginate) Find the page a record is in
My setup: Rails 2.3.10, Ruby 1.8.7
I'm using the will_paginate plugin and for a particular user, I need to implement a leaderboard feature showing the page his rating belongs to, is there a way to do ...
3
votes
2answers
257 views
How to stop will_paginate from getting every post from the database
I am just playing around with Ruby on Rails 3.0 with a simple message board and found several issues with will_paginate.
The most pressing is that each time a new page is displayed a database query ...
3
votes
1answer
1k views
How to customize the will_paginate link base?
<%= will_paginate(@posts) %>
# will generate the links like this '<a href="/posts?page=n">a link</a>'
What should I do if I want to change the href base on /contents, etc. <a ...
3
votes
1answer
148 views
Will_paginate Plugin on two objects on same page
Hello I am using will_paginte plugin on two objects on a same page. Like on stackoverflow. There is a profile page on which there is a pagination on two things
QUestions and answers.
I am having ...
3
votes
1answer
835 views
Undefined method 'total_entries' after upgrading Rails 2.2.2 to 2.3.5
I am upgrading a Rails application from 2.2.2 to 2.3.5. The only remaining error is when I invoke total_entries for creating a jqgrid.
Error:
NoMethodError (undefined method `total_entries' for ...
3
votes
1answer
265 views
will_paginate route only works on page > 1
I have the following routes defined:
map.resources :categories, :has_many => :downloads
map.resources :downloads, :member => {:go => :get}, :collection => {:tag => :get}
map.connect ...
3
votes
3answers
2k views
Rails will_paginate custom route
How can I use will_paginate with a custom route?
I have the following in my routes:
map.connect 'human-readable/:name', :controller => :tags, :action => 'show'
but will_paginate uses url_for ...
3
votes
4answers
1k views
How can I change the link format in will_paginate for page_cache in Ruby on Rails?
I want to use page_cache with will_paginate.
There are good information on this page below.
http://railsenvy.com/2007/2/28/rails-caching-tutorial#pagination
...
3
votes
4answers
477 views
Paginate through a randomized list of blog posts using will_paginate
I want to give users the ability to page through my blog posts in random order.
I can't implement it like this:
@posts = Post.paginate :page => params[:page], :order => 'RANDOM()'
since the ...
2
votes
1answer
38 views
Is there a way to have page numbers as alphabets in rails
In my rails application I wanted to use pagination for names. I'm fetching the names from a postgresql table.
def index
@users = ...
2
votes
1answer
107 views
How to paginate sunspot in this manner?
I have the following model associations:
class Product < ActiveRecord::Base
has_many :prices
class Price < ActiveRecord::Base
belongs_to :product
Here is my controller
class ...
2
votes
1answer
157 views
Rails 3.1: Output current data from will_paginate to PDF
I've been working with rails for a few weeks now, whenever I had time. I'm trying to create a PDF output of the currently shown data of my application. I'm using prawn, which is working fine and ...
2
votes
1answer
101 views
how to paginate records from multiple models? (do I need a polymorphic join?)
After quite a bit of searching, I'm still a bit lost. There are a few other similar questions out there that deal with paginating multiple models, but they are either unanswered or they pagainate ...
2
votes
1answer
31 views
What's a better way to use helper methods with will_paginate?
I'm using the latest version of will_paginate with rails 3. I'd like to use out_of_bounds? to set the current page to the last page if the page parameter is higher than the last page. I found a way to ...
2
votes
2answers
138 views
get will_paginate to define a custom offset on the first page
i'm building a news section on my rails website and it uses will_paginate for pagination. now i was wondering how i can specify a custom offset for the first page with will_paginate. something like ...
2
votes
0answers
137 views
will_paginate 'stack level too deep'
Continuation of:
undefined method `will_paginate', Rails 3.1 / DataMapper
placing
= will_paginate @collection_of_objects
anywhere in my template but at the top generates
stack level too ...
2
votes
2answers
585 views
undefined method `will_paginate', Rails 3.1 / DataMapper
Newly installed will_paginate 3.0.0
gem 'will_paginate', '~> 3.0.0', :require=>'will_paginate/data_mapper'
Running a controller query:
@tickets = Ticket.paginate(:page => params[:page], ...
2
votes
1answer
447 views
Pagination (will_paginate) Does Not Work After an Ajax Call
I am trying to create an AJAX filter along with an AJAX pagination feature.
Initially, as you can see, I paginated all the "posts" of all users. Pagination works perfectly here. But then when I ...
2
votes
0answers
160 views
Kaminari (or any pagination) is slow on Joined query
I'm paginating the following query with Kaminari (though I get similar results with will_paginate):
Person.joins([:locations=>:location_hour], :friends, ...
2
votes
1answer
641 views
For Ruby on Rails, how do you use will_paginate or Kaminari when the data is fetched from an API? (over the net)
It seems like will_paginate and Kaminari are both very tied into ActiveRecord? If the data is obtained through an API, such as
http://www.foo.com/fetch_data?type=products&offset=100&count=20
...
2
votes
4answers
399 views
Will Paginate: How change default page in links
I have two partial. The first have a common will_paginate but in the second will_paginate I need to change the links (default url) generated by will_paginate.
Please I need their answer.
Thanks
2
votes
1answer
452 views
Will_Paginate and order clause not working
I'm calling a pretty simple function, and can't seem to figure out whats going on. (I'm using rails 3.0.3 and the master branch of 'will_paginate' gem). I have the following code:
results = ...
2
votes
2answers
249 views
select all checkboxes of a form
In my rails application, i am displaying some records. I am using pagination for records..
i have a javascript function to select all the checkboxes associated with a record..But it selects checkboxes ...
2
votes
1answer
2k views
mongoid , will_paginate , sorting doesnt work with Mongoid criteria DSL
According to the readme of mongoid on github i can do fancy queries like
Person.select(:first_name, :last_name).where(:title => "Sir").skip(10).limit(10).paginate
i tried this in combination with ...
2
votes
5answers
2k views
Ruby on Rails will_paginate an array
I was wondering if someone could explain how to use will paginate on an array of objects?
For example, on my site I have an opinion section where users can rate the opinions. Here's a method I wrote ...
2
votes
1answer
2k views
Mongoid Pagination problem
I'm struggling to paginate using mongoid. I'm able to call paginate on my collection object like
@results = @collections.paginate :page => 1, :per_page => 10
but how it needs to be referred ...
2
votes
2answers
2k views
Rails 3- Will_Paginate - Making the Pagination links more like GMAIL
I'm using the Rails 3 plugin Will_Paginate and have been using the following tutorial to learn how to customize the pagination links:
...
2
votes
3answers
324 views
Ruby on Rails: Default will_paginate to last page of results
Is there an easy way, to default will_paginate to last page? I would like to show user latest addition and allow to browse previuos pages of results...
2
votes
2answers
404 views
using lambda in find in rails
I have a method that does a paginated find call like..
1
coll = paginate(:all, lambda {{:conditions => ['status = ? AND expires < ?', 'a', DateTime.now]}}, :select => ...
2
votes
3answers
637 views
Combine arrays of conditions in Rails
I'm using the Rails3 beta, will_paginate gem, and the geokit gem & plugin.
As the geokit-rails plugin, doesn't seem to support Rails3 scopes (including the :origin symbol is the issue), I need to ...
2
votes
1answer
249 views
How can I localize will_paginate in ruby on rails?
I like to localize the "previous" and "next" links in will_paginate, how can I do that?
Did anyone find a nice workaround?
2
votes
1answer
395 views
will_paginate produces escaped html in rails3, raw and .html_safe do not seem to help
will_paginate produces escaped html, what am I missing here. I've verified that will_paginate producted html_save code, I've tried adding will_paginate(@pictures).html_safe as well. Note that ...
2
votes
2answers
1k views
Multiple conditions with will_paginate
I am using will_paginate for pagination but I can't seem to use more than one condition at a time. For example, if I want to have a sql query that ends in "Where office_id = 5", then it's pretty ...
2
votes
2answers
462 views
Rails paginate array items one-by-one instead of page-by-page
I have a group of assets, let's call them "practitioners".
I'm displaying these practitioners in the header of a calendar interface.
There are 7 columns to the calendar. 7 columns = 7 practitioners ...
2
votes
0answers
129 views
How to make will_paginate work with liquid
I managed to make a little hack to make will_paginate work with liquid:
http://gist.github.com/426737
I wonder if this is safe? Ideas?
2
votes
1answer
180 views
Showing pagination with only single page using will_paginate
I'm using will_paginate as standard, but it only shows the pagination controls (< 1 2 > etc) when there's more than one page to display. Normally, this would be what is wanted, but I want to see ...
2
votes
1answer
2k views
Using will_paginate with AJAX live search with jQuery in Rails
I am using will_paginate to successfully page through records. I am also using AJAX live search via jQuery to update my results div. No problem so far. The issue I have is when trying to paginate ...
2
votes
2answers
2k views
Rails paginate existing array of ActiveRecord results
I generally use will_paginate for the pagination in my app, but have hit a stumbler on my search feature. I'm using Thinking Sphinx for doing my full-text search, which returns results paginated. The ...