<?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: jQuery UI MultiSelect Widget</title>
	<atom:link href="http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/</link>
	<description>Web Developer&#039;s Ramblings on JavaScript, jQuery, ColdFusion, MySQL, and other technologies.</description>
	<lastBuildDate>Wed, 04 Jan 2012 16:01:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7254</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 04 Jan 2012 16:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7254</guid>
		<description>Hi Eric,

allthough i&#039;m a total novice to jQuery i like your widget very much.
Could you please, give me a clue how to get the text of all selected options at the close-event?
My intention is to show a summary of selected options from a set of 5 multiselect-boxes.

I tried douzend of approaches in the way i use with php or C++ but jQuery is very hard for me.

Thanks and regards
Feinstbein</description>
		<content:encoded><![CDATA[<p>Hi Eric,</p>
<p>allthough i&#8217;m a total novice to jQuery i like your widget very much.<br />
Could you please, give me a clue how to get the text of all selected options at the close-event?<br />
My intention is to show a summary of selected options from a set of 5 multiselect-boxes.</p>
<p>I tried douzend of approaches in the way i use with php or C++ but jQuery is very hard for me.</p>
<p>Thanks and regards<br />
Feinstbein</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexk45</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7247</link>
		<dc:creator>Alexk45</dc:creator>
		<pubDate>Sat, 31 Dec 2011 04:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7247</guid>
		<description>Unless the widget author has a specific way, I suggest you remove it from the html multiselect element first, then call the widget&#039;s refresh method.

Using your example, it would be:

$(&quot;#removeBtn&quot;).click(function(){
      $( &quot;select option:selected&quot; ).remove();                   
      el.multiselect(&#039;refresh&#039;);
      alert(&quot;Completed&quot;);
});</description>
		<content:encoded><![CDATA[<p>Unless the widget author has a specific way, I suggest you remove it from the html multiselect element first, then call the widget&#8217;s refresh method.</p>
<p>Using your example, it would be:</p>
<p>$(&#8220;#removeBtn&#8221;).click(function(){<br />
      $( &#8220;select option:selected&#8221; ).remove();                  <br />
      el.multiselect(&#8216;refresh&#8217;);<br />
      alert(&#8220;Completed&#8221;);<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexk45</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7246</link>
		<dc:creator>Alexk45</dc:creator>
		<pubDate>Sat, 31 Dec 2011 04:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7246</guid>
		<description>Is there a way to permanently keep the multiselect displayed and open? When autoOpen is used, it still collapses if anywhere outside the multiselect is clicked.
I tried using the close event to force it to open again, but that caused problems with other links on the page.

Here is the code I used:

$( &quot;...&quot; ).bind(&quot;multiselectclose&quot;, function(event, ui){
    $( &quot;...&quot; ).multiselect( &quot;open&quot; );
});</description>
		<content:encoded><![CDATA[<p>Is there a way to permanently keep the multiselect displayed and open? When autoOpen is used, it still collapses if anywhere outside the multiselect is clicked.<br />
I tried using the close event to force it to open again, but that caused problems with other links on the page.</p>
<p>Here is the code I used:</p>
<p>$( &#8220;&#8230;&#8221; ).bind(&#8220;multiselectclose&#8221;, function(event, ui){<br />
    $( &#8220;&#8230;&#8221; ).multiselect( &#8220;open&#8221; );<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7231</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 26 Dec 2011 08:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7231</guid>
		<description>HI This is very good plug in .. Can you please tell me how can i remove a selected element from this widget. 

$(&quot;#removeBtn&quot;).click(function(){
                    var el = $(&quot;select&quot;).multiselect(&quot;getChecked&quot;);
                    alert(el);
                    el.removeAttr(&#039;selected&#039;);
                    el.multiselect(&#039;refresh&#039;);
                    alert(&quot;Completed&quot;);
                });
I am using this code removeBtn is my button . i need to make a code when removebutton is clicked the selected option will be removed.. but this is not working..

Please provide me solution.
Thanks in Adv.
Dhrumil Shah</description>
		<content:encoded><![CDATA[<p>HI This is very good plug in .. Can you please tell me how can i remove a selected element from this widget. </p>
<p>$(&#8220;#removeBtn&#8221;).click(function(){<br />
                    var el = $(&#8220;select&#8221;).multiselect(&#8220;getChecked&#8221;);<br />
                    alert(el);<br />
                    el.removeAttr(&#8216;selected&#8217;);<br />
                    el.multiselect(&#8216;refresh&#8217;);<br />
                    alert(&#8220;Completed&#8221;);<br />
                });<br />
I am using this code removeBtn is my button . i need to make a code when removebutton is clicked the selected option will be removed.. but this is not working..</p>
<p>Please provide me solution.<br />
Thanks in Adv.<br />
Dhrumil Shah</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Monirak Ngy</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7210</link>
		<dc:creator>Monirak Ngy</dc:creator>
		<pubDate>Thu, 22 Dec 2011 22:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7210</guid>
		<description>Greetings.  Great work on this control btw.  Here is the scenario of the issue I am encountering:  I enter text in the filter input field.  I see a match.  But when I try to use the down-arrow (to scroll through the dropdown list) on the keyboard immediately after typing,  it doesn&#039;t scroll though the list.  It seems as if the focus is lost for the list when entering text in the filter box.

This is prob not an issue, but would be great to find out a way to enter text, then use the arrows to scroll through the list, without using the mouse.  Would you w=ahppen to know if there is a way to implement this?

All The Best!</description>
		<content:encoded><![CDATA[<p>Greetings.  Great work on this control btw.  Here is the scenario of the issue I am encountering:  I enter text in the filter input field.  I see a match.  But when I try to use the down-arrow (to scroll through the dropdown list) on the keyboard immediately after typing,  it doesn&#8217;t scroll though the list.  It seems as if the focus is lost for the list when entering text in the filter box.</p>
<p>This is prob not an issue, but would be great to find out a way to enter text, then use the arrows to scroll through the list, without using the mouse.  Would you w=ahppen to know if there is a way to implement this?</p>
<p>All The Best!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos oliveira</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7209</link>
		<dc:creator>Carlos oliveira</dc:creator>
		<pubDate>Thu, 22 Dec 2011 16:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7209</guid>
		<description>HI, great work. 
I have a problem using the MultiSelect widget with multiple = false.I define the text of &#039;noneSelectedText&#039; but does not appear in the selectitems.I appreciate all the help 

thanks</description>
		<content:encoded><![CDATA[<p>HI, great work. <br />
I have a problem using the MultiSelect widget with multiple = false.I define the text of &#8216;noneSelectedText&#8217; but does not appear in the selectitems.I appreciate all the help </p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark hardy</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7164</link>
		<dc:creator>mark hardy</dc:creator>
		<pubDate>Fri, 16 Dec 2011 16:41:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7164</guid>
		<description>I&#039;ve just exactly that quite easily.  the list of options comes from one SQL query, the pre-selected options comes from another.  the pre-selected SQL results I dropped in to a var  as a comma separated string called $comma_separated. the list of options is a SQL recordset called rsApprovers and I&#039;m using the email column the menu code looks like:

                  &lt;option value=&quot;&quot; 0) {echo &quot;selected=&quot;selected&quot;&quot;;} ?&gt;&gt;
                   0) {
      mysql_data_seek($rsApprovers, 0);
	  $row_rsApprovers = mysql_fetch_assoc($rsApprovers);
  }
?&gt;


  hope you can make sense/use of that</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just exactly that quite easily.  the list of options comes from one SQL query, the pre-selected options comes from another.  the pre-selected SQL results I dropped in to a var  as a comma separated string called $comma_separated. the list of options is a SQL recordset called rsApprovers and I&#8217;m using the email column the menu code looks like:</p>
<p>                  &lt;option value=&quot;&#8221; 0) {echo &#8220;selected=&#8221;selected&#8221;";} ?&gt;&gt;<br />
                   0) {<br />
      mysql_data_seek($rsApprovers, 0);<br />
	  $row_rsApprovers = mysql_fetch_assoc($rsApprovers);<br />
  }<br />
?&gt;</p>
<p>  hope you can make sense/use of that</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark hardy</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7147</link>
		<dc:creator>mark hardy</dc:creator>
		<pubDate>Thu, 15 Dec 2011 14:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7147</guid>
		<description>Fantastic tool....  trying to do something a bit different with it and struggling.  I&#039;m generating my menu dynamically from a mySQL recordset.  that works cool, so the menu is populated from whatever SQL returns.  but.  I want to have some of the check boxes already ticked when the menu pops up.  so, for exampl, SQL might give me a list of emaila ddress, and I get a check box for each one as you&#039;d expect, I also have floating around a string containing a comma separated list of email addresses ie, &#039;tom@here.com, dick@nowhere:disqus there.com etc etc&#039;
 I&#039;d like that the check boxes for the people in the string are already checked when the menu pops up </description>
		<content:encoded><![CDATA[<p>Fantastic tool&#8230;.  trying to do something a bit different with it and struggling.  I&#8217;m generating my menu dynamically from a mySQL recordset.  that works cool, so the menu is populated from whatever SQL returns.  but.  I want to have some of the check boxes already ticked when the menu pops up.  so, for exampl, SQL might give me a list of emaila ddress, and I get a check box for each one as you&#8217;d expect, I also have floating around a string containing a comma separated list of email addresses ie, &#8216;tom@here.com, dick@nowhere:disqus there.com etc etc&#8217;<br />
 I&#8217;d like that the check boxes for the people in the string are already checked when the menu pops up </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chaya Cooper</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7141</link>
		<dc:creator>Chaya Cooper</dc:creator>
		<pubDate>Thu, 15 Dec 2011 07:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7141</guid>
		<description>Great widget, and I found it easier to customize than most.

The one problem I&#039;m having is integrating it into a page where most of my dropdowns aren&#039;t multiple selects.

Since the design is somewhat different than the standard html dropdowns or jquery plugins, I would need to switch all my dropdowns to this, however if I assign multiple: false as the default to all the dropdowns - either as part of ech.multiselect or by typing
$(&quot;select&quot;).multiselect({multiple: False}); , I can&#039;t seem to override it for the dropdown which requires the multi-select function.

 What would be the easiest way to do this?</description>
		<content:encoded><![CDATA[<p>Great widget, and I found it easier to customize than most.</p>
<p>The one problem I&#8217;m having is integrating it into a page where most of my dropdowns aren&#8217;t multiple selects.</p>
<p>Since the design is somewhat different than the standard html dropdowns or jquery plugins, I would need to switch all my dropdowns to this, however if I assign multiple: false as the default to all the dropdowns &#8211; either as part of ech.multiselect or by typing<br />
$(&#8220;select&#8221;).multiselect({multiple: False}); , I can&#8217;t seem to override it for the dropdown which requires the multi-select function.</p>
<p> What would be the easiest way to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chaya Cooper</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-7140</link>
		<dc:creator>Chaya Cooper</dc:creator>
		<pubDate>Thu, 15 Dec 2011 07:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-7140</guid>
		<description>Great widget, and I found it easier to customize than most.

The one problem I&#039;m having is integrating it into a page where most of my dropdowns aren&#039;t multiple selects.

Since the design is somewhat different than the standard html dropdowns or jquery plugins, I would need to switch all my dropdowns to this, however if I assign multiple: false as the default to all the dropdowns - either as part of ech.multiselect or by typing
$(&quot;select&quot;).multiselect({multiple: False}); , I can&#039;t seem to override it for the dropdown which requires the multi-select function.

 What would be the easiest way to do this?</description>
		<content:encoded><![CDATA[<p>Great widget, and I found it easier to customize than most.</p>
<p>The one problem I&#8217;m having is integrating it into a page where most of my dropdowns aren&#8217;t multiple selects.</p>
<p>Since the design is somewhat different than the standard html dropdowns or jquery plugins, I would need to switch all my dropdowns to this, however if I assign multiple: false as the default to all the dropdowns &#8211; either as part of ech.multiselect or by typing<br />
$(&#8220;select&#8221;).multiselect({multiple: False}); , I can&#8217;t seem to override it for the dropdown which requires the multi-select function.</p>
<p> What would be the easiest way to do this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

