Suitable GUI for sorting rows at database level and/or WYSIWYG level?

Posted by Kristoffer on Stack Overflow See other posts from Stack Overflow or by Kristoffer
Published on 2010-05-16T00:25:26Z Indexed on 2010/05/16 0:30 UTC
Read the original article Hit count: 637

Filed under:
|
|
|
|

Consider an Explorer-like list view with a number of columns. The data is fetched from a database, and the rows can be sorted by clicking the column headers.

When you click column A, you expect the fetched data to be sorted by A - at the database level ("ORDER BY" at the selected column). However, sometimes it is desirable to sort the data presented in the GUI - the visible data (WYSIWYG).

How do you combine these two? E.g. How do you allow the user to sort both the fetched data and the data visible in the GUI?

Have you seen a GUI that solves this elegantly?

© Stack Overflow or respective owner

Related posts about gui

Related posts about sorting