Questions tagged [pagination]
Pagination refers to the splitting of information across multiple pages and the related navigation control.
204 questions
0
votes
2
answers
135
views
How do you handle large datasets in a chart?
I'm building a multi-line chart using Chart.js, and I'm concerned about what to do when the number of lines becomes too high — for instance, more than 40 lines, or even 100. At that point, the chart ...
0
votes
1
answer
198
views
best practice for pagination of tables
my problem is:
Imagine I have a table with dynamic data. It could have 1 record or 2000 records. Should I have pagination, even when there are fewer than 10 records?
0
votes
1
answer
96
views
Updating items on sorted list: How affect pagination, items shown. Pros and Cons?
I have a website where people can save and edit documents. The account is usually limited to a single person, but some accounts are shared with someone else (like a family account).
I show the list of ...
1
vote
2
answers
300
views
Seeking Advice on Infinite Scroll vs. Pagination for Real Estate Site
I seek insights into the best practices for implementing infinite scroll or pagination, particularly for real estate websites.
Our site, Wasalt, specializes in real estate listings and recently ...
0
votes
1
answer
75
views
List View more collides with page view more
We are putting together a page with a list of Rules.
We limit the number of rules that can be seen by page to 48 and add a View More at the bottom of the page.
Each rule is expandable on the page and ...
5
votes
3
answers
1k
views
When data is grouped in a table, should pagination be based on individual rows or groups?
I have a table of data pertaining to stores. The user has the ability to group the data by Store Name, which will display the Store Names in a collapsed view with a (#) that indicates how many rows ...
2
votes
2
answers
147
views
How to handle list loading + errors on mobile
I have a list of addresses on a mobile app. What is the best way to handle pagination and loading errors?
example:
The list is paginated by default. 5 items are shown, with a "Load more" ...
2
votes
2
answers
210
views
How to make it clear to a user that they can click a row of data and get to sub-rows of data WITHOUT using collapse or expand?
Basically users have >25,000 rows of data. I chose pagination to allow the user to navigate the data. In some cases there are sub-rows. I would like to allow the user to "dive in" to ...
0
votes
1
answer
508
views
Ag-Grid filter across pages or current page
When using the Ag-Grid with multiple pages, is it a good practice to filter records across pages or should it be just the current page ?
Also for sorting, is it a good practice to retain the current ...
0
votes
1
answer
2k
views
What's the best way to add rows to the table if the table has pagination?
I am designing a table where the data in the table is added manually by the user. There's an 'add data' button below the table, using which an empty row gets created and the user can feed in their ...
1
vote
2
answers
355
views
Can we use the breadcrumbs just like pagination where a user can go back and forth between the pages?
I want the user to be able to go back and forth on any of these pages. And this is all pdf pages, and the important thing is the hierarchy. In the sales order we are informing how much we will charge ...
0
votes
2
answers
320
views
Which is the ideal method for designing a pagination?
I think the numeric values in pagination are not needed because users don't know what data will appear when they tap on that.
0
votes
2
answers
2k
views
Sorting list order with pagination
In a lot of the projects I've worked on, often there's a list of items where the users can manually organize the order, so that they're presented in the desired order in the web page.
Normally these ...
4
votes
3
answers
787
views
What would you expect at the end of a pagination?
I'm designing a mobile e-commerce application dedicated mainly for women in their 50s and 60s.
For my current project
I have to highlight some exclusive time-sale items at the top of a list page.
I ...
0
votes
1
answer
326
views
Pagination vs. Infinite Scrolling for page displaying Folders and Files
We have pages which display the contents of a Folder. A Folder can contain zero to many Folders and zero to many Files.
Implementing pagination in this scenario seems awkward -- what if my page has 35 ...