Mobile Design Pattern: Paging
Article Metadata
This design pattern is part of the Mobile Design Patterns series.
Contents |
Description
A systematic technique of arranging content of a long page over a number of numbered webpages is known as Paging.
Advantage
- Gives the users advance information of the quantity of the content.
Use when
Many times the content of the page is too long, ever-scrollable in other words. The users need to look for something specific in a huge list of items. For example, search results, available jobs, shopping items, etc were there are numerous results available . To avoid the user ever scrolling in such conditions the content is systematically classified according to relevance, name, type, price, etc. and presented to the user in the form of multiple webpages.
Use how
As shown in the below screenshots, only part of the results are provided on the current webpage. The navigation links to the other lists of results or next pages are located at the top and/or bottom of the page. It is generally a practice to provide these navigation links both at the top and bottom of the webpage for the convenience of the user.
Depending upon the number of other results available, the navigation links are numbered. For example when the results are very large the links are available for "1-10" pages, while when the results are comparatively low less number of navigation links are shown. Ref fig.
The navigation links are generally page numbers, as shown in the above screenshots. However, when mobilizing a website - due to less screen resolution resulting in less space - the page numbers tend to be very small. A special design which has links "Show next 10 results" and "Show previous 10 results" may be used.
Design Tips
- As per the availability of screen space and the size and style of fonts used the navigation buttons may be sometime appear to small. An alternate is using buttons which link to proper navigation links.
- A scroll bar (with a Go button) with navigation links may also be used instead of all visible number links. This may be helpful when the screen space available is small.
--Submitted by croozeus 01:18, 12 May 2009 (EEST)





16 Sep
2009
Paging is systematic and organized way of arranging related content in different pages/views if the content is too large to accumulate in one page. Paging navigation control is used to navigate these pages.
This article presents the overview and basic design pattern of paging i.e. when and how they should be used. Some good tips for creating paging application are also given. The article provides effective image-implementations for let it be more understandable.
The article is well-arranged and contains basic but important information about paging which can be useful to beginners as well as intermediate developers.