Questions tagged [pagination]

Pagination is the process of dividing information into discrete pages.

Pagination is the process of dividing information into discrete pages. Pagination is often used for the purpose of printing or searching information.

Pagination in Web content (HTML, ASP, PHP, and others)

On the Internet, pagination is used for such things as displaying a limited number of results on search engine results pages, or showing a limited number of posts when viewing a forum thread. Pagination is used in some form in almost every web application to divide returned data and display it on multiple pages. Pagination also includes the logic of preparing and displaying the links to the various pages.

Links

Wikipedia Pagination

17657 questions
56
votes
9 answers

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 on a javascript pagination system that uses the dom…
jrutter
  • 3,173
  • 9
  • 42
  • 51
56
votes
6 answers

How to implement pagination in Spring MVC 3

Is there any out-of-the-box, easy to implement, standard pagination component/tag-lib or code-sample available for pagination in Spring MVC?
Nachiket
  • 6,021
  • 6
  • 41
  • 47
56
votes
8 answers

How to do pagination in SQL Server 2008

How do you do pagination in SQL Server 2008 ?
Omu
  • 69,856
  • 92
  • 277
  • 407
55
votes
1 answer

How to stretch a table over multiple pages

I have a Table (multiple rows, multiple columns, see below ) that is longer than one page. How can I tell LaTeX to continue on the next page. Adding a \newpage didn't work Manually 'ending' and 'reopening' the table works, but is very tedious,…
lexu
  • 8,766
  • 5
  • 45
  • 63
54
votes
6 answers

Turn off automatic pagination of Django Rest Framework ModelViewSet

I am using Django Rest Framework's ModelViewSet for one of my views. ModelViewSet uses the ListModelMixin which automatically paginates the results but I do not want the results paginated. In my API call I say how many results I want returned but as…
Bill Noble
  • 6,466
  • 19
  • 74
  • 133
52
votes
12 answers

Detect page change on DataTable

With DataTable I can order, list, do pagination but I want to detect when the pagination changes, I've seen the API but the only one I can do is change the page but no detect this change.
Felix
  • 3,058
  • 6
  • 43
  • 53
50
votes
5 answers

What pagination schemes can handle rapidly-changing content lists?

Pagination is hard when your content rankings can change quickly, and even harder when those rankings differ per-user. (Let's treat infinite scroll as a type of pagination where the links are invisible.) There are two hard problems: newly-added…
Jay Levitt
  • 1,680
  • 1
  • 19
  • 28
50
votes
5 answers

Only show tables with certain patterns in mysql "show tables"

There are too many tables in a db. how can I only show tables with certain patterns? Or is there a way I can do paging like "| more" in shell command?
user398384
  • 1,124
  • 3
  • 14
  • 21
49
votes
4 answers

How to implement Isotope with Pagination

I am trying to implement isotope with pagination on my WordPress site (which obviously is a problem for most people). I've come up with a scenario which may work if I can figure a few things out. On my page, I have this part of my isotope script…
730wavy
  • 944
  • 1
  • 19
  • 57
47
votes
1 answer

How can I paginate a WPF DataGrid?

How can I set paging in a wpf DataGrid?
vijai
47
votes
4 answers

How to fix laravel 8 UI paginate problem?

I had a problem while trying out the recently released laravel 8, I'm trying to find out what the changes are and how it works. When I did that I had a problem with the paginate laravel 8 UI getting messy and somehow it happened. Is there anyone who…
Habi nata
  • 620
  • 1
  • 4
  • 10
47
votes
4 answers

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 the couchdb-python module, but that shouldn't make…
dbr
  • 165,801
  • 69
  • 278
  • 343
47
votes
11 answers

Laravel Multiple Pagination in one page

I'm having some trouble with my pagination. I'm having two tables with data from a database and I paginated it with laravel Paginator. Now my problem is when you go to, for example, page 2 it adds ?page=2 but that makes the first table go to page 2…
Melvin Koopmans
  • 2,994
  • 2
  • 25
  • 33
46
votes
5 answers

How to create a Scroll View with a page control using swift?

I am trying to create a Page View controller with numbers of view. I want a simple code sample that will use UIPageViewController.
LC 웃
  • 18,888
  • 9
  • 57
  • 72
46
votes
4 answers

How can I select rows in MySQL starting at a given row number?

Say I have 50 rows in a MySQL table. I want to select the first ten (LIMIT 10), but then I want to be able to select the next 10 on a different page. So how do I start my selection, after row 10? Updated query: mysql_query(" SELECT * FROM…
mrpatg
  • 10,001
  • 42
  • 110
  • 169