Sunday, April 30, 2017

Alternative to this dual list UI


So a while back, I asked a question about a dual list UI. I didn't explain my question well enough, and the answers reflected that. My question now is, "Is there a better way to allow the user to accomplish their goals than with the UI I've created".


The goals are as follows.




  1. User must be able to select Super-Categories to cut down on the Available List size

  2. User must be able to Filter Categories to cut down on the Available List Size.

  3. User should be able to use a general Add/Remove to move Categories from the Available to the Selected List.


Here is my current setup, pay no mind to the colors, they were used for sizing and positioning. The thing I'm noticing is how this UI setup seems to always feel like it needs more and more space. It also feels VERY unbalanced because of the Filter and Super-Category selection being on one side, and nothing being on the other.


I could move the Filter so that it was on the same line as "Sections"/"Super-Categories" and then add a Separator for a mental break. But I feel that leads the user to think that the filter works on the Selected List when it only works on the AvailableList.


Any help is GREATLY appreciated.


UI Atrocity Below...


enter image description here




Answer



About the List Builder and the Add/Remove List


TL;DR. Here's a summary of two design patterns that might work, with lots of questions to help you decide.


This information is from the usage patterns for list boxes, and you have to scroll down a few rows to see details about List builders and Add/remove lists. Nothing in these guidelines says that the screen must appear "balanced", which is one of your concerns.


First, here are some questions to help you decide which pattern is best for your problem space.


Is this the right design pattern?



Is the control used to choose zero or more items from a list of values? If not, use another control. For choosing one item, use a single-selection list instead.


Does the order of the selected items matter? If so, the list builder and add/remove list patterns support order, whereas the other multiple-selection patterns do not.


Is it important for users to see a summary of all the selected items? If so, the list builder and add/remove list patterns display only the selected items, whereas the other multiple-selection patterns do not.



Are the possible choices unconstrained? If so, use an add/remove list so that users can choose values not currently in the list.


Does adding a value to the list require a specialized dialog box for choosing objects? If so, use an add/remove list and display the dialog box when users click Add.


Is screen space at a premium? If so, use an add/remove list instead because it uses less screen space by not always showing the set of options.


For list boxes, the number of items in the list isn't a factor in choosing the control because they scale from thousands of items all the way down to one for single-selection lists (and none for multiple-selection lists). Because list boxes can be used for data, the number of items might not be known in advance.



Interaction details and UI descriptions


Here is a description and the interaction details for each design pattern.


The list builder



List builders allow users to create a list of choices by adding one item at a time, and optionally setting the list order.



A list builder consists of two single-selection lists: the list on the left is a fixed set of options and the list on the right is the list being built. There are two command buttons between the lists: Add and Remove.


Add moves the currently selected option to the list being built, inserted before the selected item. (Double-clicking on an option item has the same effect.)


Remove removes the selected item from the built list and returns it to the option list. (Double-clicking on an item in the built list has the same effect.)


The built list may optionally have Move up and Move down commands to order the list items.


Example of a list builder


In this example, a list builder is used to create a toolbar by selecting items from a set of available options and setting their order.



This is an older example, and the location of the Close button, or alternatively the OK button, will be dictated by the standards for your operating system.


The add/remove list




Add/remove lists allow users to create a list of choices by adding one or more items at a time, and optionally setting the list order (like list builders).


Unlike a list builder, clicking Add displays a dialog box to select items to add to the list. Using a separate dialog box allows for significant flexibility in choosing items—you can use a specialized object picker or even a common dialog. Compared to the list builder, this variation is more compact but requires slightly more effort for users to add items.



This extra step may make it easier for users to understand.



Here is an example:


Example of an add/remove list


In this example, users can add or remove tools from a menu, as well as set order.


While the list builder and add/remove list patterns are significantly heavier than the other multiple-selection lists, they offer two unique advantages:


• Users have control over the list order, while building the list and after.



• Users can review a summary of the selected items, a benefit if the number of choices is large.


Their disadvantages are that they require much more screen space and can be difficult to use when creating a large list of items from scratch. Consequently, they are best used to create short lists or modify lists that already exist.



Filtering


If you are concerned that the user might not understand that the filter applies to both lists, you can cue the user by using layout, a graphical element, or a simple phrase (embedded assistance) to make this relationship clear. In this illustration, the filter on the right is more readily seen to apply to the entire list builder screen simply by its layout:


Filter layouts for a list-builder screen


You seem to favour balance, so you might like to adjust the layout, or use it in combination with text, or background shading, or a graphical bar. If you're unsure, you can always ask a graphic designer for advice.


I hope that helps you decide whether to implement one of these solutions.


No comments:

Post a Comment

technique - How credible is wikipedia?

I understand that this question relates more to wikipedia than it does writing but... If I was going to use wikipedia for a source for a res...