<?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, 08 Sep 2010 15:22:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on jQuery Related (Dependent) Selects Plugin by Wuilliam Lacruz</title>
		<link>http://www.erichynds.com/jquery/jquery-related-dependent-selects-plugin/#comment-3827</link>
		<dc:creator>Wuilliam Lacruz</dc:creator>
		<pubDate>Wed, 08 Sep 2010 15:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=113#comment-3827</guid>
		<description>Hi again! how can i set a Default Value for each select box by default (for an Update Module)</description>
		<content:encoded><![CDATA[<p>Hi again! how can i set a Default Value for each select box by default (for an Update Module)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget by Ian</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-3826</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Wed, 08 Sep 2010 11:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-3826</guid>
		<description>Using the following code works fine to check the correct boxes but I seem to have found a bug. Even though 4 boxes will be ticked, the list header says “3 items selected”. If I un-tick one manually and then re-tick it, the heading correctly says 4 boxes ticked.

        months = &#039;1:3:4:11:&#039;; //test data
        var args = months.split(&#039;:&#039;);

        for (var i = 0; i &lt; args.length; i++) {
            var id = args[i];
            if (id != &#039;&#039;) {
                index = id - 1;
                var s = $(&quot;#ifmgr_sch_Months&quot;).multiselect(&quot;widget&quot;).find(&quot;input:checkbox:eq(&quot; + index + &quot;)&quot;).trigger(&quot;click&quot;);
                s.checked = true;
            }
        }
</description>
		<content:encoded><![CDATA[<p>Using the following code works fine to check the correct boxes but I seem to have found a bug. Even though 4 boxes will be ticked, the list header says “3 items selected”. If I un-tick one manually and then re-tick it, the heading correctly says 4 boxes ticked.</p>
<p>        months = &#8217;1:3:4:11:&#8217;; //test data<br />
        var args = months.split(&#8216;:&#8217;);</p>
<p>        for (var i = 0; i < args.length; i++) {<br />
            var id = args[i];<br />
            if (id != &#8221;) {<br />
                index = id &#8211; 1;<br />
                var s = $(&#8220;#ifmgr_sch_Months&#8221;).multiselect(&#8220;widget&#8221;).find(&#8220;input:checkbox:eq(&#8221; + index + &#8220;)&#8221;).trigger(&#8220;click&#8221;);<br />
                s.checked = true;<br />
            }<br />
        }</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-3825</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 07 Sep 2010 14:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-3825</guid>
		<description>the code I posted will check or uncheck all the checkboxes.  you&#039;d probably want to target a specific one though:

$(&quot;select&quot;).multiselect(&quot;widget&quot;).find(&quot;input:checkbox:eq(2)&quot;).trigger(&quot;click&quot;);

that&#039;ll find the 3rd checkbox (0-based index) and check or uncheck it.</description>
		<content:encoded><![CDATA[<p>the code I posted will check or uncheck all the checkboxes.  you&#8217;d probably want to target a specific one though:</p>
<p>$(&#8220;select&#8221;).multiselect(&#8220;widget&#8221;).find(&#8220;input:checkbox:eq(2)&#8221;).trigger(&#8220;click&#8221;);</p>
<p>that&#8217;ll find the 3rd checkbox (0-based index) and check or uncheck it.</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-3824</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 07 Sep 2010 14:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-3824</guid>
		<description>Fixed in the latest build...</description>
		<content:encoded><![CDATA[<p>Fixed in the latest build&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget by Philip Smith</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-3823</link>
		<dc:creator>Philip Smith</dc:creator>
		<pubDate>Thu, 02 Sep 2010 14:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-3823</guid>
		<description>In response to my own question, I&#039;m doing something like.

    var options = $(&quot;#DDL_AcademicYears&quot;).multiselect(&quot;widget&quot;).find(&quot;input:radio&quot;);
    for (var i = 0; i &lt; options.length; i++) {
        if (options[i].checked) { // do something with i }
    }

Not sure if its the best way but it works.
</description>
		<content:encoded><![CDATA[<p>In response to my own question, I&#8217;m doing something like.</p>
<p>    var options = $(&#8220;#DDL_AcademicYears&#8221;).multiselect(&#8220;widget&#8221;).find(&#8220;input:radio&#8221;);<br />
    for (var i = 0; i < options.length; i++) {<br />
        if (options[i].checked) { // do something with i }<br />
    }</p>
<p>Not sure if its the best way but it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget by Philip Smith</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-3818</link>
		<dc:creator>Philip Smith</dc:creator>
		<pubDate>Wed, 01 Sep 2010 16:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-3818</guid>
		<description>Very nice widget :) does almost everything I need for what I&#039;m working on.
I do have a question though and that is how (if possible) can I extract the index of a selected value, especially for lists where multiple: false.

Thanks
</description>
		<content:encoded><![CDATA[<p>Very nice widget <img src='http://www.erichynds.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  does almost everything I need for what I&#8217;m working on.<br />
I do have a question though and that is how (if possible) can I extract the index of a selected value, especially for lists where multiple: false.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery MultiSelect Plugin w/ ThemeRoller Support by Thomas</title>
		<link>http://www.erichynds.com/jquery/jquery-multiselect-plugin-with-themeroller-support/#comment-3779</link>
		<dc:creator>Thomas</dc:creator>
		<pubDate>Mon, 30 Aug 2010 20:11:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=240#comment-3779</guid>
		<description>I have $(&quot;#study_country&quot;).bind(&quot;multiselectclick&quot;, function(event, ui){ .... }); and inside of this click event I would like to close the dialog box, how can this be accomplished?</description>
		<content:encoded><![CDATA[<p>I have $(&#8220;#study_country&#8221;).bind(&#8220;multiselectclick&#8221;, function(event, ui){ &#8230;. }); and inside of this click event I would like to close the dialog box, how can this be accomplished?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery MultiSelect Plugin w/ ThemeRoller Support by Kevin</title>
		<link>http://www.erichynds.com/jquery/jquery-multiselect-plugin-with-themeroller-support/#comment-3748</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Mon, 30 Aug 2010 17:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=240#comment-3748</guid>
		<description>hello,

i need a function to check/uncheck all options. I&#039;m a newbie on this topic, and I&#039;ve already searched on Google several hours, but I couldn&#039;t find something useful.
maybe someone could help me? 

greets, 
kevin</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>i need a function to check/uncheck all options. I&#8217;m a newbie on this topic, and I&#8217;ve already searched on Google several hours, but I couldn&#8217;t find something useful.<br />
maybe someone could help me? </p>
<p>greets,<br />
kevin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget by Jharbour</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-3720</link>
		<dc:creator>Jharbour</dc:creator>
		<pubDate>Fri, 27 Aug 2010 21:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-3720</guid>
		<description>I realized my mistake yesterday and was able to get everything working.  The only issue I have now is with the previous version when open the menu did not affect the other elements in the form.  It overlaid them.  This version pushes all other items down the page.  Is there a setting to overlay?

Great plug in by the way.</description>
		<content:encoded><![CDATA[<p>I realized my mistake yesterday and was able to get everything working.  The only issue I have now is with the previous version when open the menu did not affect the other elements in the form.  It overlaid them.  This version pushes all other items down the page.  Is there a setting to overlay?</p>
<p>Great plug in by the way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery UI MultiSelect Widget by prip</title>
		<link>http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/#comment-3721</link>
		<dc:creator>prip</dc:creator>
		<pubDate>Fri, 27 Aug 2010 16:03:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.erichynds.com/?p=832#comment-3721</guid>
		<description>Great job!

How do I add and remove options?</description>
		<content:encoded><![CDATA[<p>Great job!</p>
<p>How do I add and remove options?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
