People need to explore information that is related hierarchically.
Show information in a table that allows expansion of rows in a tree-like format to show hierarchical relationships.
A table is a good, well-established way to show a list of items with multiple attributes shown in one view. A tree is a natural way to explore hierarchical information and is also a fairly established way to do this. Some email applications and RSS readers use this approach, so users of those will readily be able to use this; however, due to its visual complexity and minimal affordances, it could be problematic for inexperienced users.
You need to use a tree control that supports multiple columns, or a grid control that supports hierarchy.
You can combine this pattern with Sortable Table. As sorting the items for any column but the first will disrupt the tree ordering, you will need to provide a way to go back to the tree view. For example, Outlook Express has a “View by conversation” menu option to allow that.
Infragistics has some tools that can jumpstart your efforts to implement this pattern. Broken down by technology, they are as follows.
You can use the hierarchical data display capabilities of the NetAdvantage for Silverlight xamWebGrid control for this.
You can use the NetAdvantage for Windows Forms WinTree to implement this pattern. If you download the NetAdvantage for Win Client bundle, you can find a sample in the WinForms sample browser called Free Form View Style to see it in action.
You can implement this pattern using the NetAdvantage for WPF XamDataGrid control. If you download the NetAdvantage for Win Client bundle, you can find a sample in the xamFeatureBrowser called Hierarchical Data Binding to see it in action.
The primary example is from Windows Live Destktop Mail newsreader, which uses a Tree-Table to group the newsgroups threads.
http://quince.infragistics.com/113c
Mac OS X Finder has a tree table view that lets people drill down the file system hierarchy.
http://quince.infragistics.com/117t
The Infragistics Windows Forms WinTree control provides a way to display a multi-column tree (a tree table) as shown in this sample emulating a newsgroup reader.
http://quince.infragistics.com/10y6
Jennifer Tidwell, Tree-Table