<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Web Form Woe</title>
	<link>http://ask.metafilter.com/39372/Web-Form-Woe/</link>
	<description>Comments on Ask MetaFilter post Web Form Woe</description>
	<pubDate>Fri, 02 Jun 2006 08:02:57 -0800</pubDate>
	<lastBuildDate>Fri, 02 Jun 2006 08:02:57 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Web Form Woe</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe</link>	
		<description>Elegant design of ~500 multiple select elements in HTML?  Am new to this whole presentation thing... &lt;br /&gt;&lt;br /&gt; I am creating a web form in which users must be able to make N-selections between 500-600 elements.   In most cases N &amp;lt;= 10.  I have them stuffed into a bunch of select-multiple boxes, atm.  Does anyone have suggestions for better layout?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.39372</guid>
		<pubDate>Fri, 02 Jun 2006 07:54:57 -0800</pubDate>
		<dc:creator>bastionofsanity</dc:creator>
		
			<category>html</category>
		
			<category>layout</category>
		
			<category>webdesign</category>
		
	</item> <item>
		<title>By: bitdamaged</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#607895</link>	
		<description>Eee gods.  That&apos;s almost going to be a nightmare anyway you do it.  With that many I&apos;d use checkboxes instead of multi-selects though because I&apos;d be afraid of people missing a click and losing the choices they&apos;ve made&lt;br&gt;
&lt;br&gt;
Is there not a way to limit some of the choices (or page them) using some categorization? Can you do something like a Javascript that rewrites the choices based on earlier choices?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-607895</guid>
		<pubDate>Fri, 02 Jun 2006 08:02:57 -0800</pubDate>
		<dc:creator>bitdamaged</dc:creator>
	</item><item>
		<title>By: adamrice</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#607900</link>	
		<description>That&apos;s a tall order. &lt;br&gt;
&lt;br&gt;
1. Is there any hierarchy to these 500 options? Any way to select one general category and select specific options from there?&lt;br&gt;
&lt;br&gt;
2. Are these thematically grouped/groupable, so that most users would only need to look at one multiple-select box?&lt;br&gt;
&lt;br&gt;
If (for example) this were a list of cities, I can imagine something like the OS X Finder&apos;s column browser, so that in column 1 you have continents, column 2 is countries, and column 2 is cities. But if people were likely to pick cities from more than one country, you&apos;d need multiple rounds of winnow/select/submit.&lt;br&gt;
&lt;br&gt;
What is the actual subject matter? That could help guide how you present the options. Do you have anything mocked up?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-607900</guid>
		<pubDate>Fri, 02 Jun 2006 08:09:53 -0800</pubDate>
		<dc:creator>adamrice</dc:creator>
	</item><item>
		<title>By: jon_kill</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#607902</link>	
		<description>I&apos;m not sure how to do it in HTML, but a system where you have two boxes, and a button to transfer the elements from the box on the left to the box on the right is always an elegant solution. The contents of the box on the right is the list of selected elements in the end. Another button can deselect the element by moving it back to the left side.&lt;br&gt;
&lt;br&gt;
Make sure you alphabetize them.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-607902</guid>
		<pubDate>Fri, 02 Jun 2006 08:10:59 -0800</pubDate>
		<dc:creator>jon_kill</dc:creator>
	</item><item>
		<title>By: zpousman</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#607904</link>	
		<description>Um, don&apos;t do this.&lt;br&gt;
&lt;br&gt;
Why on god&apos;s green earth are there more possible choices than the number of countries in the world?!?! If you have a huge set of objects like this, find some way to &lt;b&gt;reduce&lt;/b&gt; it, or at least &lt;b&gt;filter&lt;/b&gt; it. This sounds to me like there is some list of every single product in the whole system, and the developer just wants to spit out the entire list into a selectbox. &lt;b&gt;Don&apos;t do it!&lt;/b&gt; Some ideas:&lt;br&gt;
&lt;br&gt;
1. At some earlier point in the form/web-app/thingy, have the user make some selections that drive the possible number of selections down toward 100-200.&lt;br&gt;
&lt;br&gt;
2. At the page in question, provide facility for filtering the list. Perhaps use a tab metaphor so that the user is only presented with a single 100-200 list at a time. He or she then can page through the smaller lists, making selections as she goes (those should be visibly added to a &quot;cart&quot; or &quot;selection.&quot; If you hide the selection boxes, there&apos;s no way to see what&apos;s already picked.&lt;br&gt;
&lt;br&gt;
3. Use some Ajax-y goodness and let users use the keyboard to do &quot;typed completions.&quot; This only helps if the task is not a browse task, but is a known-item search. If I know I need a &quot;ProForm 550 Rev. B&quot; then I could type in that, and the selectbox would jump to the &quot;P&quot;s, then the &quot;ProForm&quot;s, etc. as I type. If the user really needs to browse, then you need a &lt;b&gt;*good*&lt;/b&gt; browsing interface. And a select box isn&apos;t it.&lt;br&gt;
&lt;br&gt;
4. Let people save their selections (if at all applicable). Sure, the user might need to be miserable once as she selects the printer cartriges for every printer in her office. But next time, please remember the user&apos;s default order!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-607904</guid>
		<pubDate>Fri, 02 Jun 2006 08:12:37 -0800</pubDate>
		<dc:creator>zpousman</dc:creator>
	</item><item>
		<title>By: Armitage Shanks</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#607916</link>	
		<description>500 items is a lot to wade through in one list, but you could avoid the accidental-clear problem by using &lt;a href=&quot;http://krijnhoetmer.nl/stuff/html/select-multiple-checkbox-list/&quot;&gt;checkboxes in a list&lt;/a&gt;.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-607916</guid>
		<pubDate>Fri, 02 Jun 2006 08:24:31 -0800</pubDate>
		<dc:creator>Armitage Shanks</dc:creator>
	</item><item>
		<title>By: bastionofsanity</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#607925</link>	
		<description>I am currently polling the select boxes after every change to make an update to a div tag listing all currently selected choices.  These choices are links that allow the user to deselect their choice, as well.&lt;br&gt;
There is a semantic order to the choices.  Each selection is a six character code.  Eventually the human-readable equivalent for each code will need to replace the code in the select-thing object.  &lt;br&gt;
The current select-multiple page breaks the 731(last count) elements into select-multiple(s) of 20 displaying 5 at a time, ignoring any semantic grouping and just letting natural order (they are alphabetized) decide into which box they go.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-607925</guid>
		<pubDate>Fri, 02 Jun 2006 08:32:21 -0800</pubDate>
		<dc:creator>bastionofsanity</dc:creator>
	</item><item>
		<title>By: bastionofsanity</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#607947</link>	
		<description>zpousman:&lt;br&gt;
Your 3rd point interests me.  It is something I considered, but ran into distribution issue.  The codes are clumped in certain respects. e.g. abcXXX occurs 350 times in the list, abeXXX occurs 4 times, etc.  And the XXX part can significantly change the meaning of a code.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-607947</guid>
		<pubDate>Fri, 02 Jun 2006 08:46:49 -0800</pubDate>
		<dc:creator>bastionofsanity</dc:creator>
	</item><item>
		<title>By: mbrubeck</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#608062</link>	
		<description>How about a page with two main elements:  The list of currently selected items, and a form at the bottom of the list to add a new item.  (If users also need to &quot;unselect&quot; items, then add a &quot;remove&quot; button next to each item in the list.)&lt;br&gt;
&lt;br&gt;
The &quot;add an item&quot; form could just have single-select control with a list of all the items, or (probably better) it could also include a search box to filter the items.  An auto-completing textbox like the one used on &lt;a href=&quot;http://www.google.com/webhp?complete=1&amp;hl=en&quot;&gt;Google Suggest&lt;/a&gt; could combine these two functions into one control.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-608062</guid>
		<pubDate>Fri, 02 Jun 2006 10:36:55 -0800</pubDate>
		<dc:creator>mbrubeck</dc:creator>
	</item><item>
		<title>By: bastionofsanity</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#608196</link>	
		<description>I am leading towards zpousman&apos;s answer.  Dropdowns to create a filter that returns a collection of dropdowns with final selection in them.  Just not sure how I want to structure it.  One giant list of 204 items is not acceptable to users.  There are sub-categories within that 204, but that would require another filter.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-608196</guid>
		<pubDate>Fri, 02 Jun 2006 12:58:26 -0800</pubDate>
		<dc:creator>bastionofsanity</dc:creator>
	</item><item>
		<title>By: zpousman</title>
		<link>http://ask.metafilter.com/39372/Web-Form-Woe#610077</link>	
		<description>Don&apos;t know if you&apos;re still checking this thread,  but think about it like this (and use this explanation to argue for it to other folks on the team): If your solution takes 4 pages to build the final set of selection(s), and each page takes 10 seconds to load and only 5 seconds to make a seleciton, that&apos;s 1 minute. Compare this to loading a single page (10 seconds), but the user spending 3 or 4 *minutes* getting more and more frustrated all the while making the same selections from a much less optimal set of widgets. It&apos;s a no brainer for me: it&apos;d be great if there were a way to do this on a single page, but there&apos;s not.&lt;br&gt;
&lt;br&gt;
That&apos;s not to say that you can&apos;t make it *look* like a single page, using iFrames, Ajax, etc. etc. Then it&apos;s the best of both worlds -- it helps users filter down the list(s), but also appears to be a single page.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.39372-610077</guid>
		<pubDate>Mon, 05 Jun 2006 05:06:53 -0800</pubDate>
		<dc:creator>zpousman</dc:creator>
	</item>
	</channel>
</rss>
