Long lists of data present a problem for GUI development. This occurs when
choosing records from large database tables or recipients from a long list of
e-mail addresses, or any time a subset of data must be chosen from a long
list or table.
Two issues arise when choosing from long lists of data. First, what is the
best GUI for long lists so that the users understand how to navigate and
manipulate their data? Second, if the list holds more than a few hundred
items, performance become an issue.
In this article, simple examples show how to optimize usability for this
common GUI design pattern. In a later article, more complex examples will
show how to optimize performance for long lists.
GUI Design Patterns
In the late 1990s, a GUI design pattern emerged for choosing multi... (more)
Jakarta Struts provides a standard framework for Web applications, and
JavaServer Faces offers a component-based framework for user interfaces.
At the user interface, a common task in both frameworks is selecting items
from lists. Over the years, standard design patterns have been developed for
selection lists. For developers, the advantage of implementing these standard
patterns is that ... (more)
A previous article compared Jakarta Struts and JavaServer Faces
implementations of five simple design patterns for list selection. (JDJ, Vol.
11, Issue 3).
Long lists and ordered selections require a more complex design pattern. This
pattern displays available items in one list and chosen items in another so
the user's choices are always visible and easily modified.
This design pattern i... (more)
In the late 1990s, a GUI design pattern emerged for choosing multiple objects
from long lists. In GUI Design Essentials, Susan Weinschenk, Pamela Jamar,
and Sarah Yeo called this the Selection Summary pattern. In "A Dual Listbox
Selection Manager" by Steve Aube, it's also known as the Dual Listbox
Selection interface. In The Java Look and Feel Guidelines, Advanced Topics,
it is called th... (more)