Tagged Questions
Pagination is the process of dividing information into discrete pages.
83
votes
9answers
5k views
Pagination in a REST web application
This is a more generic reformulation of this question (with the elimination of the Rails specific parts)
I am not sure how to implement pagination on a resource in a RESTful web application.
Assuming ...
66
votes
7answers
21k views
How can you do paging with NHibernate?
For example, I want to populate a gridview control in an ASP.NET web page with only the data necessary for the # of rows displayed. How can NHibernate support this?
28
votes
8answers
6k views
Paging in a Rest Collection
I'm interested in exposing a direct REST interface to collections of JSON documents (think CouchDB or Persevere). The problem I'm running into is how to handle the GET operation on the collection root ...
28
votes
6answers
11k views
What is the best way to paginate results in MS SQLServer
What is the best way (performance wise) to paginate results in SQL Server 2000, 2005, 2008 if you also want to get the total number of results (before paginating)?
19
votes
5answers
15k views
Does Rails have a built-in pagination solution?
I've noticed that pagination gems like mislav-will_paginate are quite popular. Is this because Rails does not have a built-in pagination solution or because the built-in solution is not very good?
19
votes
4answers
4k views
Pagination in CouchDB?
How would I go about implementation the queries required for pagination?
Basically, when page 1 is requested, get the first 5 entries. For page 2, get the next 5 and so on.
I plan to use this via ...
16
votes
9answers
7k views
Is there a more efficient way of making pagination in Hibernate than executing select and count queries?
Usually pagination queries look like this. Is there a better way instead of making two almost equal methods, one of which executing "select *..." and the other one "count *..."?
public ...
15
votes
7answers
3k views
HTML book-like pagination
How can I split the content of a HTML file in screen-sized chunks to "paginate" it in a WebKit browser?
Each "page" should show a complete amount of text. This means that a line of text must not be ...
15
votes
5answers
7k views
MySQL pagination without double-querying?
I was wondering if there was a way to get the number of results from a MySQL query, and at the same time limit the results.
The way pagination works (as I understand it), first I do something like
...
15
votes
10answers
5k views
Smart pagination algorithm
I'm looking for an example algorithm of smart pagination. By smart, what I mean is that I only want to show, for example, 2 adjacent pages to the current page, so instead of ending up with a ...
11
votes
3answers
843 views
How the “FBReader” do the pagination of html files in epub
I'm trying to make an epub reader
I want to do the pagination like fbreader does
Now I have source code of fbreader, but I don't know where it implement pagination
I have my implementation on other ...
10
votes
1answer
2k views
How to check if a user has scrolled to the bottom
I'm making a pagination system (sort of like Facebook) where the content loads when the user scrolls to the bottom. I imagine the best way to do that is to find when the user is at the bottom of the ...
10
votes
1answer
2k views
Paging over a lazy-loaded collection with NHibernate
I read this article where Ayende states NHibernate can (compared to EF 4):
Collection with lazy=”extra” – Lazy extra means that NHibernate adapts to
the operations that you might run on
top ...
10
votes
5answers
7k views
Paged table with ASP.NET MVC and AJAX
I'm looking for good patterns for implementing a paged table of results in ASP.NET MVC with sorting, filtering, and paging provided via AJAX. It seems to me that I should have my controller actions ...
9
votes
1answer
507 views
Controlling the placement of the paginator
According to the docs, Displaytag can be configured to put a paginator before or after the generated table element via the paging.banner.placement property.
However, I would like to place the ...
9
votes
5answers
14k views
LIMIT 10..20 in sqlserver
I'm trying to do something like :
SELECT * FROM table LIMIT 10,20
or
SELECT * FROM table LIMIT 10 OFFSET 10
but using SQLServer
The only solution I found looks like overkill:
SELECT * FROM (
...
9
votes
2answers
3k views
Paginated search results with LINQ to SQL
What's the best pattern to get paginated results with LINQ to SQL?
I have the following scenario:
Suppose I want to search items table by description. I can easily do:
public IQueryable<Item> ...
9
votes
6answers
3k views
Why doesnt paginator remember my custom parameters when I go to page 2?
When using the paginator helper in cakephp views, it doesnt remember parts of the url that are custom for my useage.
For example:
http://example.org/users/index/moderators/page:2/sort:name/dir:asc
...
8
votes
2answers
602 views
Pagination Alternatives
I am looking for ideas for pagination alternatives. I am aware of 2 pagination schemes:
Click on pages pagination - my favorite example
Infinite scroll pagination - one implementation here that ...
8
votes
8answers
2k views
Pagination: Server Side or Client Side?
What is it best to handle pagination? Server side or doing it dynamically using javascript?
I'm working on a project which is heavy on the ajax and pulling in data dynamically, so I've been working ...
7
votes
2answers
961 views
backbone.js pagination
I am beginning to use Backbone and am trying to transition my Rails backend's html templates to javascript templates.
One thing I thought using backbone would be more advantageous is its concept of ...
7
votes
3answers
1k views
passing parameters to zend paginationControl partial
I have a page that displays a lot of data, including Zend_Paginator.
The page action is /po/fetch?id=someID.
what i want to do is to pass the "id" parameter to zend paginationControl so the ...
7
votes
1answer
2k views
Ajax pagination with the Kaminari gem
After a recent railscast I'm using the kaminari gem in my website and I want to do ajax pagination
The kaminari docs say: the helper supports Rails 3 unobtrusive Ajax.
Does anyone have any hints or ...
7
votes
3answers
373 views
Stateless pagination in CouchDB?
Most of the research I've seen on pagination with CouchDB suggests that what you need to do is take the first ten (or however many) items from your view, then record the last document's docid and pass ...
7
votes
1answer
2k views
Good jQuery pagination plugin to use with JSON data
I am looking for a good jQuery pagination plugin to use in my aspx page.
I have the following parameters.
currentpage, pagesize, TotalRecords, NumberofPages. I would like my plugin to do the same as ...
7
votes
2answers
2k views
CakePHP Model: COUNT(*) in Containable
I have a CakePHP 1.3 app and really enjoy the Containable behavior for fetching data.
Let's assume I have Posts in one-to-many relationship with Comments. I use Containable to query (for pagination) ...
7
votes
1answer
3k views
Pagination with MongoDB
I have been using MongoDB and RoR to store logging data. I am pulling out the data and looking to page the results. Has anyone done paging with MongoDB or know of any resources online that might ...
7
votes
5answers
3k views
Bing image search paging - infinite scroll
When you search for images on the Bing search engine, the result is displayed like this:
http://www.bing.com/images/search?q=stack+overflow
Notice how you can keep scrolling and scrolling and there ...
6
votes
4answers
215 views
Is there a better way to create an alphabetic pagination index in PHP/MySQL?
One of my standard behaviors for pagination within my CMSs is to show an alphabetic quickbar when sorting by an alpha column. For example, if the results are being sorted by Last Name, under the ...
6
votes
1answer
623 views
Pagination Techniques using Google App Engine
I want to implement pagination for my website using the Cursor feature of GAE (Java). However, there is only a forward cursor ; backward cursors are not implemented as of App Engine SDK 1.4.0. So, to ...
6
votes
1answer
849 views
Grails: Is there a way to have findAll() without a query but with pagination and sorting?
As I noticed in the answers of another question there are a few problems when testing finder methods in GORM.
I want to get all objects from Something and have support for sorting and pagination, so I ...
6
votes
3answers
1k views
Paginating the results of a Django forms POST request
I'm using Django Forms to do a filtered/faceted search via POST, and I would like to Django's paginator class to organize the results. How do I preserve the original request when passing the client ...
6
votes
4answers
797 views
LINQ to SQL Pagination and COUNT(*)
I'm using the PagedList class in my web application that many of you might be familiar with if you have been doing anything with ASP.NET MVC and LINQ to SQL. It has been blogged about by Rob Conery, ...
6
votes
4answers
3k views
6
votes
4answers
1k views
How to paginate Django with other get variables?
I am having problems using pagination in Django. Take the URL below as an example:
http://127.0.0.1:8000/users/?sort=first_name
On this page I sort a list of users by their first_name. Without a ...
6
votes
5answers
376 views
Pagination Strategies for Complex (slow) Datasets
What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don't want to hit the DB for every page view. Currently there are ...
6
votes
4answers
2k views
Is there a paging solution for ASP.NET MVC that does paging in the database?
Most of the ASP.NET MVC paging solutions I have found by googling look like they get all rows from a database table in the form of a IEnumerable collection, perform some paging conversion on the ...
6
votes
4answers
1k views
pagination with the python cmd module
I'm prototyping a Python app with the cmd module.
Some messages to the user will be quite long and I'd like to paginate them.
The first 10 (or a configurable number) lines of the message would ...
6
votes
6answers
583 views
In MVC, should pagination info go in the path or querystring?
In the path:
Format: http://mydomain.com/{category}/{subcategory}/{pageNumber}/{pageSize}
Example: http://mydomain.com/books/thriller/3/25
In the querystring:
Format: ...
6
votes
6answers
4k views
How to reuse a Criteria object with hibernate?
I'm trying to do query result pagination with hibernate and displaytag, and Hibernate DetachedCriteria objects are doing their best to stand in the way. Let me explain...
The easiest way to do ...
6
votes
6answers
2k views
Paginated query using sorting on different columns using ROW_NUMBER() OVER () in SQL Server 2005
Let's suppose I'm using the Northwind database and I would like to run a query via a stored procedure that contains, among other parameters, the following:
@Offset to indicate where the pagination ...
5
votes
2answers
360 views
The most efficient way to use Jquery pagination & history plugins together
In my ASP.NET MVC 3 application I want to use Jquery's pagination plugin to make my forum...
So I want, to do all page changes with Ajax, and want to use history plugin for working browser's back and ...
5
votes
2answers
176 views
In .Net 4.0, can DirectorySearch return LDAP results in a way that allows me to page through them?
I am working in C#, and am trying to use DirectorySearch to query the groups of an extremely large Microsoft ActiveDirectory LDAP server.
So, in my application, I'm going to have a paged list of ...
5
votes
1answer
342 views
Working with large Backbone collections
We're designing a backbone application, in which each server-side collection has the potential to contain tens of thousands of records. As an analogy - think of going into the 'Sent Items' view of an ...
5
votes
1answer
86 views
Cursors + Pagination & SEO
I would like to know if it's possible to paginate using cursors and keep those pages optimized for SEO at the same time.
/page/1
/page/2
Using offsets, gives to Google bot some information about ...
5
votes
2answers
239 views
Silverlight: Paging data from the server
I have a server-side API which provides paged data in JSON format based on various query parameters. I would like to provide a UI that allows the user to paged through the results of a query.
I am ...
5
votes
2answers
106 views
auto-scrollable pagination with vim using vertical split
I want to achieve the following: I want to split a vim session into two (or more) vertical windows (with the :vsplit command). Then, I want to have each window contents vertically offsetted so that ...
5
votes
4answers
567 views
SQL: Find next row in a where clause given an ID
I have a table called products in a MySQL database. products looks some what like this:
id name din strength active deleted
1 APA TEST 00246374 25 1 0
4 APA BOB ...
5
votes
3answers
290 views
nhibernate, eager loading and paging
I am creating an mvc application that uses nhibernate and paging. I have a parent > child relationship that I am trying to eager load my child records. This is all working fine.
The problem I am ...
5
votes
2answers
541 views
Best paging solution using SQL Server 2005?
What is the most efficient paging solution using SQL Server 2005 against a table with around 5,000-10,000 rows? I've seen several out there but nothing comparing them.