<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Best Way to do Multiple Select Combo Boxes in Rails</title>
	<atom:link href="http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/</link>
	<description>By Jason Gill</description>
	<lastBuildDate>Fri, 03 Feb 2012 08:45:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: B7</title>
		<link>http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/#comment-366</link>
		<dc:creator>B7</dc:creator>
		<pubDate>Thu, 08 Sep 2011 18:59:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gillumiante.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails#comment-366</guid>
		<description>Where&#039;s my code?</description>
		<content:encoded><![CDATA[<p>Where&#8217;s my code?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: B7</title>
		<link>http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/#comment-365</link>
		<dc:creator>B7</dc:creator>
		<pubDate>Thu, 08 Sep 2011 18:58:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gillumiante.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails#comment-365</guid>
		<description>Thanks! It worked! Here&#039;s my code:


     true ) %&gt;

In this case, CompleteList is a list of all possible choices (and it uses class constants), and selected_choices_list is the ones that this user has already chosen.</description>
		<content:encoded><![CDATA[<p>Thanks! It worked! Here&#8217;s my code:</p>
<p>     true ) %&gt;</p>
<p>In this case, CompleteList is a list of all possible choices (and it uses class constants), and selected_choices_list is the ones that this user has already chosen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anil</title>
		<link>http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/#comment-364</link>
		<dc:creator>Anil</dc:creator>
		<pubDate>Thu, 18 Mar 2010 13:33:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gillumiante.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails#comment-364</guid>
		<description>You can try the following, it works for me:
 &quot;multiple&quot;, :size =&gt; 5 ) %&gt;</description>
		<content:encoded><![CDATA[<p>You can try the following, it works for me:<br />
 &#8220;multiple&#8221;, :size =&gt; 5 ) %&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kiran</title>
		<link>http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/#comment-363</link>
		<dc:creator>Kiran</dc:creator>
		<pubDate>Tue, 23 Feb 2010 08:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gillumiante.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails#comment-363</guid>
		<description>Nice article.It&#039;s really useful.</description>
		<content:encoded><![CDATA[<p>Nice article.It&#8217;s really useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/#comment-362</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Sun, 05 Apr 2009 16:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gillumiante.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails#comment-362</guid>
		<description>Nice article. There is another way for multiselect (for has_many and habtm relationships) though - showing two select boxes, one for all available options and one for the selected options, and the opportunity to move options from one select box to the other. I call this SwapSelect and it is described (incl. download) here:
&lt;a href=&#039;http://trendwork.kmf.de/175&#039; rel=&quot;nofollow&quot;&gt;http://trendwork.kmf.de/175&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Nice article. There is another way for multiselect (for has_many and habtm relationships) though &#8211; showing two select boxes, one for all available options and one for the selected options, and the opportunity to move options from one select box to the other. I call this SwapSelect and it is described (incl. download) here:<br />
<a href='http://trendwork.kmf.de/175' rel="nofollow">http://trendwork.kmf.de/175</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herb</title>
		<link>http://www.gilluminate.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails/#comment-361</link>
		<dc:creator>Herb</dc:creator>
		<pubDate>Thu, 15 Feb 2007 23:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gillumiante.com/2007/02/15/best-way-to-do-multiple-select-combo-boxes-in-rails#comment-361</guid>
		<description>You should encompass that select tag with the if statement, otherwise you get nil.inject errors when @states_selected is called after the initial check. Helped me out though.</description>
		<content:encoded><![CDATA[<p>You should encompass that select tag with the if statement, otherwise you get nil.inject errors when @states_selected is called after the initial check. Helped me out though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

