<?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 for Eric Hynds</title>
	<atom:link href="http://www.erichynds.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.erichynds.com</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>Comment on jQuery UI MultiSelect Widget 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>Comment on jQuery UI MultiSelect Widget 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>Comment on jQuery UI MultiSelect Widget 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>Comment on Tips for Developing jQuery UI 1.8 Widgets by Harinatha Php</title>
		<link>http://www.erichynds.com/jquery/tips-for-developing-jquery-ui-widgets/#comment-7237</link>
		<dc:creator>Harinatha Php</dc:creator>
		<pubDate>Thu, 29 Dec 2011 11:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=543#comment-7237</guid>
		<description>Nice article to start creating widgets.</description>
		<content:encoded><![CDATA[<p>Nice article to start creating widgets.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget 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>Comment on Using Deferreds in jQuery 1.5 by Tim</title>
		<link>http://www.erichynds.com/jquery/using-deferreds-in-jquery/#comment-7215</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Fri, 23 Dec 2011 11:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=1058#comment-7215</guid>
		<description>Right quite so, a wonderful writeup. I&#039;m still counting on the official &lt;a href=&quot;http://www.selectfactoring.co.uk/spot-factoring/&quot; rel=&quot;nofollow&quot;&gt;spot factoring&lt;/a&gt; documentation to be honest. </description>
		<content:encoded><![CDATA[<p>Right quite so, a wonderful writeup. I&#8217;m still counting on the official <a href="http://www.selectfactoring.co.uk/spot-factoring/" rel="nofollow">spot factoring</a> documentation to be honest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget 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>Comment on jQuery UI MultiSelect Widget 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>Comment on Using Deferreds in jQuery 1.5 by Tim</title>
		<link>http://www.erichynds.com/jquery/using-deferreds-in-jquery/#comment-7188</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 20 Dec 2011 16:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=1058#comment-7188</guid>
		<description>Exactly my point but that&#039;s just fine in the end. Tim @ &lt;a href=&quot;http://www.mywrestlingroom.com/&quot; rel=&quot;nofollow&quot;&gt;wrestling shoes&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Exactly my point but that&#8217;s just fine in the end. Tim @ <a href="http://www.mywrestlingroom.com/" rel="nofollow">wrestling shoes</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget 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>
</channel>
</rss>

