<?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: My Javascript Date Chooser</title>
	<atom:link href="http://bluedogwebservices.com/writing-a-javascript-date-chooser/feed/" rel="self" type="application/rss+xml" />
	<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=writing-a-javascript-date-chooser</link>
	<description>BlueDog Web Services</description>
	<lastBuildDate>Thu, 26 Jan 2012 21:06:46 +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: Joel</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-139</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Mon, 04 Apr 2011 14:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-139</guid>
		<description>Hi,

this is great - is there any way for this to be changed to do dd/mm/yyyy format instead of yyyy/mm/dd format?

it will display the text box as dd/mm/yyyy - however, if i select &quot;02/04/2010&quot; for example (2nd april 2010) then when i click on the box again it thinks it is the 4th February, and that date is selected?

Thanks in advance for the help.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>this is great &#8211; is there any way for this to be changed to do dd/mm/yyyy format instead of yyyy/mm/dd format?</p>
<p>it will display the text box as dd/mm/yyyy &#8211; however, if i select &#8220;02/04/2010&#8243; for example (2nd april 2010) then when i click on the box again it thinks it is the 4th February, and that date is selected?</p>
<p>Thanks in advance for the help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Y920.com</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-138</link>
		<dc:creator>Y920.com</dc:creator>
		<pubDate>Mon, 16 Feb 2009 03:51:26 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-138</guid>
		<description>Thanks for this..</description>
		<content:encoded><![CDATA[<p>Thanks for this..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lina</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-136</link>
		<dc:creator>Lina</dc:creator>
		<pubDate>Sun, 17 Aug 2008 18:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-136</guid>
		<description>?? ??. ? ???? ????? ???? ???????????? ?????????? ? ?? ?????  ? ??????????? ???? ??????.</description>
		<content:encoded><![CDATA[<p>?? ??. ? ???? ????? ???? ???????????? ?????????? ? ?? ?????  ? ??????????? ???? ??????.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron D. Campbell</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-134</link>
		<dc:creator>Aaron D. Campbell</dc:creator>
		<pubDate>Fri, 01 Aug 2008 13:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-134</guid>
		<description>sadi: No it is not.</description>
		<content:encoded><![CDATA[<p>sadi: No it is not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sadi</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-135</link>
		<dc:creator>sadi</dc:creator>
		<pubDate>Fri, 01 Aug 2008 05:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-135</guid>
		<description>hi i want to control the back date. i.e user cant select back date is it possible here</description>
		<content:encoded><![CDATA[<p>hi i want to control the back date. i.e user cant select back date is it possible here</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco Dimichele</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-137</link>
		<dc:creator>Marco Dimichele</dc:creator>
		<pubDate>Tue, 22 Jul 2008 10:58:17 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-137</guid>
		<description>Hi, there&#039;s an error on line 73 of calendar.js. It should be replaced with:
        for(i=0; i!=selects.length; i++) {
otherwise it will not work on ie.
Also, I suggest to replace the conditional code /*@cc_on  ...  @*/
with a check on ie version, because ie7 handles correctly the overlay, and in this case the is not necessary. The final version should be:
&lt;code&gt;
Calendar.prototype.setSelectVisibility = function (vis) {
        if (false /*@cc_on &#124;&#124; @_jscript_version &lt; 5.7 @*/) {

                var selects = document.getElementsByTagName(&#039;select&#039;);
                for(i=0; i!=selects.length; i++) {
                        if(typeof(selects[i]) == &#039;object&#039;){
                                selects[i].style.visibility = vis;
                        }
                }
        }
}</description>
		<content:encoded><![CDATA[<p>Hi, there&#8217;s an error on line 73 of calendar.js. It should be replaced with:<br />
        for(i=0; i!=selects.length; i++) {<br />
otherwise it will not work on ie.<br />
Also, I suggest to replace the conditional code /*@cc_on  &#8230;  @*/<br />
with a check on ie version, because ie7 handles correctly the overlay, and in this case the is not necessary. The final version should be:<br />
<code><br />
Calendar.prototype.setSelectVisibility = function (vis) {<br />
        if (false /*@cc_on || @_jscript_version &lt; 5.7 @*/) {</p>
<p>                var selects = document.getElementsByTagName('select');<br />
                for(i=0; i!=selects.length; i++) {<br />
                        if(typeof(selects[i]) == 'object'){<br />
                                selects[i].style.visibility = vis;<br />
                        }<br />
                }<br />
        }<br />
}</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chad</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-133</link>
		<dc:creator>Chad</dc:creator>
		<pubDate>Thu, 29 May 2008 00:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-133</guid>
		<description>Thanks, great calendar!</description>
		<content:encoded><![CDATA[<p>Thanks, great calendar!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grant</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-132</link>
		<dc:creator>Grant</dc:creator>
		<pubDate>Tue, 15 Jan 2008 02:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-132</guid>
		<description>This is supremely sexy. I&#039;ll be using this for sure. Thanks for sharing this!</description>
		<content:encoded><![CDATA[<p>This is supremely sexy. I&#8217;ll be using this for sure. Thanks for sharing this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron D. Campbell</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-129</link>
		<dc:creator>Aaron D. Campbell</dc:creator>
		<pubDate>Thu, 10 Jan 2008 00:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-129</guid>
		<description>I recently revisited this post, and realized the new design for Xavisys.com messed up the look of the calendar, making it nearly impossible to use!  I apologize, and I added one line to the css that overrides the Xavisys defaults, setting the size of the buttons back to auto.  It is now fixed, and the demo works as expected.</description>
		<content:encoded><![CDATA[<p>I recently revisited this post, and realized the new design for Xavisys.com messed up the look of the calendar, making it nearly impossible to use!  I apologize, and I added one line to the css that overrides the Xavisys defaults, setting the size of the buttons back to auto.  It is now fixed, and the demo works as expected.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron D. Campbell</title>
		<link>http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-131</link>
		<dc:creator>Aaron D. Campbell</dc:creator>
		<pubDate>Wed, 28 Nov 2007 20:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://bluedogwebservices.com/writing-a-javascript-date-chooser/#comment-131</guid>
		<description>I made it.</description>
		<content:encoded><![CDATA[<p>I made it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

