Tell me more ×
User Experience Stack Exchange is a question and answer site for user experience researchers and experts. It's 100% free, no registration required.

I have a functionality which loads several records that are paginated and can be sorted. What would be the best way to approach the sorting once the user is located beyond page 1? I find myself thinking that there are two possible ways to keep the user experience consistent:

  • If an user clicks on sorting, and he is located on page 3, the records are sorted but he continues to be in page 3.
  • If an user clicks on sorting, the records are sorted but he is taken to page 1.
share|improve this question

2 Answers

up vote 1 down vote accepted

First of all, the best practice would be to use AJAX resorting of elements, because you don't want to reload the whole page and break the flow in user's navigation. That being said, the sorting should be applied without resetting to page 1, that is, the user should stay on the same page, but you should scroll his view to the top. Also, use AJAX resorting and rescrolling if possible, because it would dramatically increase user experience.

Here is a generic example of what it could look like.

share|improve this answer
Thanks @Anderson, do you have by any chance any links where the pagination is being implemented the way you suggest? – Osvaldo M. Nov 5 '12 at 17:16
1  
@OsvaldoM. Here is a generic example of what it could look like. – Anderson Nov 5 '12 at 18:05

Here is another option. It assumes
- the records are displayed in some sort of table
- there are always one or more records selected when the table has focus
- sorting the table does not affect the selected state of a record

Sorting the records should keep the selected record(s) in view. When one record is selected, that record remains in view regardless of the sort order. When more than one record is selected, you will need to decide which record remains in view because the new sort may spread the selected records across multiple pages.

This is a common interaction in software for exploratory data analysis.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.