Skip to main content

Questions tagged [pagination]

Pagination is the process of dividing information into discrete pages.

1 vote
1 answer
279 views

I'm new to Go from another language and I'm most interested to know if this implementation has anything that's not idiomatic Go, but any feedback is welcome and you're not going to hurt my feelings by ...
ETLJ's user avatar
  • 111
1 vote
1 answer
218 views

After reviewing my previous question I came up with this pagination function. On my first approach I wrote a class thinking about IDE's code assist and the review wasn't positive. In this function I ...
julio's user avatar
  • 229
2 votes
1 answer
135 views

This is my first question in Code Review. I apologize in advance for using Spanish (my native language). I thought there was a spanish version of Code Review. This class is meant for pagination. It ...
julio's user avatar
  • 229
1 vote
0 answers
502 views

I am a beginnner and have put up a code that talks to pagerduty API and then it fethces oncall info for a team (get team id, get escalation policy id, then finally get on call info). response is ...
AhmFM's user avatar
  • 131
4 votes
1 answer
170 views

I am starting with the Angular and I need some support. I have watched some of the tutorials and lot of them are using things differently. I upgraded some tutorial with my own idea, but I am not sure ...
ggoran's user avatar
  • 141
1 vote
1 answer
4k views

I've encountered a paginated API route where there is no way to know the number of available pages. The only way to retrieve every pages is to check on each page if a next page exists. To do so, the ...
djoproject's user avatar
2 votes
1 answer
425 views

What I'm trying to do is quite simple: my table has pagination. So if I have 12 items to show and my max items per page is 10, I will have 2 pages, one with 10 records and another with just 2. I ...
Pelicer's user avatar
  • 123
3 votes
1 answer
168 views

The most nauseous problem with pagination is the fact that you have to write two almost identical queries. For the various reasons I am not inclined to use the SQL-only way (such as ...
Your Common Sense's user avatar
3 votes
1 answer
654 views

I have made this Pagination Class in JS which takes the following configurations :- Total records Records per page Visible pages The idea is simple that any instance created using this Pagination ...
Lakshya Thakur's user avatar
2 votes
1 answer
171 views

Basic paging function, is there logical problems with the JavaScript part? very basic paging function. I want to know if there are some problems in the logic of the code. I feel the JS code is a bit ...
Phoenix's user avatar
  • 81
2 votes
0 answers
56 views

Can you guys review my GraphQL search pagination function? I'm afraid there could be some performance issues, or something. Especially at the aggregation section and this ...
SnekNOTSnake's user avatar
3 votes
1 answer
5k views

I made a pagination algorithm but in my opinion it is too complicated and it is quite difficult to be understood. This algorithm should show 5 pages where in the middle is the current page. It should ...
John R.'s user avatar
  • 165
1 vote
1 answer
138 views

I'm building a page in LWC this page consist of a table, you can search, sort and paginate with this table. When the first element is selected: when the last element is selected: When the middle ...
d_k's user avatar
  • 113
3 votes
0 answers
1k views

I'm creating a generic pagination helper class. Personally I use this class for navigating through Records which are loaded into any sequential containers e.g ...
k03rdt6's user avatar
  • 31
2 votes
0 answers
1k views

Motivation In my web app (React, Redux, TypeScript) we have a common need to write paginated API calls, with various UI interactions (infinite scroll, prefetch pages in the background, or manual page ...
Aaron Beall's user avatar

15 30 50 per page
1
2 3 4 5
8