Examples of good UI for selecting multiple records

后端 未结 7 1057
攒了一身酷
攒了一身酷 2021-01-30 11:48

I\'m currently revisiting an area of my Windows-based software and looking at changing the relationship from 1->M to M->M. As a result, I need to adjust the UI to accommodate se

7条回答
  •  清歌不尽
    2021-01-30 12:14

    I like the way StackOverflow relates many tags with many questions:

    Items are displayed as user types

    1. You start obviously with the record you want to associate multiple items with.

    2. As you type the search displays the matches ( no need to press on "Search" )

    3. The user select the desired record ( Sorting would be nice. SO uses "tag relevance". For instance typing 'a' brings Java rather than asp because Java has more questions than asp, in your case relevance may be the user name )

    4. The system creates the relationship ( in memory )

    5. If a number of records ( 5+ ) are filling the input field, they are moved into a semi-regid area ( not a SO problem because it only has 5 tag withing a single question, but in your case something like the "interesting tags" feature would be needed )

    Associated items are moved to a "rigid" area

    Of course in an ordered manner ( using a table )

    • Finally when the user end with the association it clicks SAVE or CANCEL buttons.

    This approach has more efficiency by not needing to have the user press on "search" or "add other" which distracts them from what they're doing, it is being said it interrupts its train of thought.

    Also, if you make the user grab the mouse to click on something while they are typing the UI is less efficient ( I think there is something called the Hick's law about that, but quite frankly I may be wrong )

    As you see this approach is pretty much already what you have in mind, but adding some facilities to make the user happier ( The danger would be if the user loves this approach and wants it in other parts of the system )

提交回复
热议问题