Top "Pagination" questions

Pagination is the process of dividing information into discrete pages.

Angular material Paginator is not working

I am trying to add Angular Material Paginator on my app. MatPaginatorModule added in module. <mat-paginator #paginator [length]="100" [pageSize]="10" […

angular pagination angular5 angular-material2 angular-material-paginator
Changing SqlDataSource.SelectCommand at runtime breaks pagination

I have a GridView bound to a SqlDataSource with a default SelectCommand defined as such: <asp:SqlDataSource ID="SqlDataSource1" …

asp.net gridview pagination sqldatasource selectcommand
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 …

javascript facebook facebook-graph-api pagination
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 …

java mysql hibernate pagination hql
Use of XSL-FO, CSS3 instead of CSS2 to create Paginated documents like PDF?

There are a lot of old texts, like this 2002 book, stating that we must use "CSS for Web" and "XSL-FO …

css xml pdf pagination xsl-fo
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 …

php laravel pagination
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 …

javascript pagination client-side server-side
Laravel 5.1 specifing current page for pagination

Been working on this for far too long with no results. I have tried. `\Illuminate\Pagination\Paginator::setCurrentPage($current_page);` …

php pagination laravel-5.1
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 …

django pagination
MongoDB ranged pagination

It's said that using skip() for pagination in MongoDB collection with many records is slow and not recommended. Ranged pagination (…

performance mongodb pagination