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
25
votes
6 answers

Vuetify remove pagination on v-data-table

I want remove pagination on v-data-table,use hide-default-footer but it doesn't work. try to use hide-dafault-footer
gold three
  • 661
  • 1
  • 8
  • 10
25
votes
5 answers

reset paginator first page angular material

I am trying to go to the first page of the mat-paginator, that is, reset the pagination, but it does not work. Any idea how it can be solved? My html is such that
MGs
  • 453
  • 1
  • 5
  • 7
25
votes
5 answers

Pagination with ListView in flutter

I'm new at flutter and I have been searching for proper result of pagination for 2 days. I followed this code Flutter ListView lazy loading But didn't achieve what I want. Look at below code. import 'package:flutter/material.dart'; import…
Govaadiyo
  • 5,644
  • 9
  • 43
  • 72
25
votes
6 answers

Elasticsearch Scroll

I am little bit confused over Elasticsearch by its scroll functionality. In elasticsearch is it possible to call search API everytime whenever the user scrolls on the result set? From documentation "search_type" => "scan", // use…
Spring
  • 648
  • 1
  • 7
  • 20
25
votes
2 answers

Multiple pagination (ajax) not working for django-el-pagination

I have 2 querysets: Post and Comment. I'm using django-el-pagination to render these using ajax. Here's my view: def profile(request, user, extra_context=None): profile = Profile.objects.get(user__username=user) page_template =…
Zorgan
  • 8,227
  • 23
  • 106
  • 207
25
votes
4 answers

How to query data for Primefaces dataTable using lazy loading and pagination

In my JSF's datatable I have implemented lazy loading and when I paginate through records it is taking time about 4 or 5 seconds to execute next set of records, actually it should be take less than a second to execute the results. This has happened…
Jacob
  • 14,463
  • 65
  • 207
  • 320
24
votes
2 answers

RSpec test broken by pagination (Kaminari)

I have a view spec that was passing but is broken now that pagination (via Kaminari gem) has been added to the view. I'm still trying to get my head around RSpec's syntax...so looking for help in getting this to pass as the page works fine in the…
Meltemi
  • 37,979
  • 50
  • 195
  • 293
24
votes
5 answers

How does paging in facebook javascript API work?

I'm trying to recover the last week posts in my facebook news feed with the javascript sdk. I'm able to get the first page but then, I don't know how to continue iterating through the other pages. I've tried it with the following code: …
Fgblanch
  • 5,195
  • 8
  • 37
  • 51
24
votes
1 answer

Android Paging library doesn't fire loadAfter()

I'm using the new Android Paging library to get a RecyclerView with infinite scrolling. I cannot understand why the library does not fire the loadAfter() method when I setup my PagedList like this: val config: PagedList.Config =…
24
votes
13 answers

How to check if used paginate in laravel

I have a custom view and in some functions, I used paginate and other functions I don't use paginate. now how can I check if I used paginate or not ? @if($products->links()) {{$products->links()}} @endif // not work of course that I know I…
S.M_Emamian
  • 17,005
  • 37
  • 135
  • 254
24
votes
4 answers

RxJs Observable Pagination

First: This is the first project in which I am using RxJs, I thought I will learn best by using it. I found this answer: Turning paginated requests into an Observable stream with RxJs But it says in the comments: You're exceeding the maximum call…
jjuser19jj
  • 1,637
  • 3
  • 20
  • 38
24
votes
2 answers

Redirecting 404 to search with pagination on 404 template

First of all, I want to make it clear that I know what best practices are when it comes to handling 404 errors. However, I have this specific case where I may need a tailored approach. I'm handling a newspaper site that has more than 10 years' worth…
lucian
  • 623
  • 10
  • 21
24
votes
4 answers

Limit the number of pages displayed in bootstrap 3 pagination

I have various web pages on my website which are using bootstraps (bootstrap 3) pagination but I need to know how to limit the number of pages displayed in it (e.g. display pages 1 to 10 only). If you then select page 2, page 11 would b displayed…
murday1983
  • 3,806
  • 14
  • 54
  • 105
24
votes
10 answers

How to use pagination on HTML tables?

I am trying to use this Pagination library in my HTML table page (specifically light theme) but somehow I am not able to understand how to plugin this library in such a way in my HTML page so that I can have pagination code working in my HTML…
user2467545
23
votes
6 answers

Hibernate - HQL pagination

This is a problem similar to: HQL - row identifier for pagination I'm trying to implement pagination using HQL. I have a PostgreSQL database. int elementsPerBlock = 10; int page = 2; //offset = 2*10 String sqlQuery = "FROM Messages AS msg " + …
iliaden
  • 3,791
  • 8
  • 38
  • 50