<?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: Javascript Calendar Widget 1.08</title>
	<atom:link href="http://codetale.com/2009/06/21/javascript-calendar-widget-108/feed/" rel="self" type="application/rss+xml" />
	<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/</link>
	<description>[A Source For Webmasters]</description>
	<lastBuildDate>Wed, 01 Feb 2012 15:13:28 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bruce</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-2/#comment-989</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Wed, 01 Feb 2012 15:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-989</guid>
		<description>I have used the calendar on a form so that the user can only choose a date up to eight weeks in the future and the date is entered in a database-ready format. The colours are exactly matched to my website and it is positioned so that the user can see part of it even if the input field is at the top or bottom edge of their screen. It&#039;s here http://www.maps.thehunthouse.com/eBook_Gift_Shop.htm Many thanks again.</description>
		<content:encoded><![CDATA[<p>I have used the calendar on a form so that the user can only choose a date up to eight weeks in the future and the date is entered in a database-ready format. The colours are exactly matched to my website and it is positioned so that the user can see part of it even if the input field is at the top or bottom edge of their screen. It&#8217;s here <a href="http://www.maps.thehunthouse.com/eBook_Gift_Shop.htm" rel="nofollow">http://www.maps.thehunthouse.com/eBook_Gift_Shop.htm</a> Many thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JZam</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-2/#comment-984</link>
		<dc:creator>JZam</dc:creator>
		<pubDate>Fri, 14 Oct 2011 00:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-984</guid>
		<description>Regarding to comment #1 (cause it took me some time to make it work). a) I downloaded http://codetale.com/cwcalendar/calendar_ftype.js. b) Putted on WebContent folder. c) renamed to &quot;calendar.js&quot; (in order to avoid changes in a bunch of code). d) I create a new variable: var formatType = &quot;mm/dd/yyyy&quot; in my jsp header section. That worked just like I need it. Thanks a Lot Adisan.</description>
		<content:encoded><![CDATA[<p>Regarding to comment #1 (cause it took me some time to make it work). a) I downloaded <a href="http://codetale.com/cwcalendar/calendar_ftype.js" rel="nofollow">http://codetale.com/cwcalendar/calendar_ftype.js</a>. b) Putted on WebContent folder. c) renamed to &#8220;calendar.js&#8221; (in order to avoid changes in a bunch of code). d) I create a new variable: var formatType = &#8220;mm/dd/yyyy&#8221; in my jsp header section. That worked just like I need it. Thanks a Lot Adisan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adisan</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-2/#comment-969</link>
		<dc:creator>adisan</dc:creator>
		<pubDate>Sun, 03 Jul 2011 13:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-969</guid>
		<description>@Bruce,

It takes the user&#039;s computer time not the server time.</description>
		<content:encoded><![CDATA[<p>@Bruce,</p>
<p>It takes the user&#8217;s computer time not the server time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve-a-reno</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-2/#comment-967</link>
		<dc:creator>Steve-a-reno</dc:creator>
		<pubDate>Mon, 11 Apr 2011 15:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-967</guid>
		<description>This is an update to the getMouseXY function. It makes up for the changes in the IE browser and give a true position for the cursor.

function getMouseXY(e) // works on IE6,FF,Moz,Opera7
{ 
  if (!e) e = window.event; // works on IE, but not NS (we rely on NS passing us the event)
 
  if (e)
  { 
    if (e.pageX &#124;&#124; e.pageY)
    { // this doesn&#039;t work on IE6!! (works on FF,Moz,Opera7)
      tempX = e.pageX;
      tempY = e.pageY;
      algor = &#039;[e.pageX]&#039;;
      if (e.clientX &#124;&#124; e.clientY) algor += &#039; [e.clientX] &#039;
    }
    else if (e.clientX &#124;&#124; e.clientY)
    { // works on IE6,FF,Moz,Opera7
      // Note: I am adding together both the &quot;body&quot; and &quot;documentElement&quot; scroll positions
      //       this lets me cover for the quirks that happen based on the &quot;doctype&quot; of the html page.
      //         (example: IE6 in compatibility mode or strict)
      //       Based on the different ways that IE,FF,Moz,Opera use these ScrollValues for body and documentElement
      //       it looks like they will fill EITHER ONE SCROLL VALUE OR THE OTHER, NOT BOTH 
      //         (from info at http://www.quirksmode.org/js/doctypes.html)
      tempX = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
      tempY = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
      algor = &#039;[e.clientX]&#039;;
      if (e.pageX &#124;&#124; e.pageY) algor += &#039; [e.pageX] &#039;
    }
  }
}</description>
		<content:encoded><![CDATA[<p>This is an update to the getMouseXY function. It makes up for the changes in the IE browser and give a true position for the cursor.</p>
<p>function getMouseXY(e) // works on IE6,FF,Moz,Opera7<br />
{<br />
  if (!e) e = window.event; // works on IE, but not NS (we rely on NS passing us the event)</p>
<p>  if (e)<br />
  {<br />
    if (e.pageX || e.pageY)<br />
    { // this doesn&#8217;t work on IE6!! (works on FF,Moz,Opera7)<br />
      tempX = e.pageX;<br />
      tempY = e.pageY;<br />
      algor = &#8216;[e.pageX]&#8216;;<br />
      if (e.clientX || e.clientY) algor += &#8216; [e.clientX] &#8216;<br />
    }<br />
    else if (e.clientX || e.clientY)<br />
    { // works on IE6,FF,Moz,Opera7<br />
      // Note: I am adding together both the &#8220;body&#8221; and &#8220;documentElement&#8221; scroll positions<br />
      //       this lets me cover for the quirks that happen based on the &#8220;doctype&#8221; of the html page.<br />
      //         (example: IE6 in compatibility mode or strict)<br />
      //       Based on the different ways that IE,FF,Moz,Opera use these ScrollValues for body and documentElement<br />
      //       it looks like they will fill EITHER ONE SCROLL VALUE OR THE OTHER, NOT BOTH<br />
      //         (from info at <a href="http://www.quirksmode.org/js/doctypes.html)" rel="nofollow">http://www.quirksmode.org/js/doctypes.html)</a><br />
      tempX = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;<br />
      tempY = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;<br />
      algor = &#8216;[e.clientX]&#8216;;<br />
      if (e.pageX || e.pageY) algor += &#8216; [e.pageX] &#8216;<br />
    }<br />
  }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-1/#comment-966</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Sun, 10 Apr 2011 08:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-966</guid>
		<description>Thank you for this calendar, it is perfect. When my page is ready I will post a link here. One (stupid?) question. If the user is in a different time zone to my server who&#039;s clock does it look at to get the date?Their&#039;s or mine?</description>
		<content:encoded><![CDATA[<p>Thank you for this calendar, it is perfect. When my page is ready I will post a link here. One (stupid?) question. If the user is in a different time zone to my server who&#8217;s clock does it look at to get the date?Their&#8217;s or mine?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-1/#comment-964</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 25 Feb 2011 13:15:26 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-964</guid>
		<description>I am having an issue where I have more than one calendar pop-up on a page. I click the first pop-up, it works great..say I select 01/01/2008, the problem is when I click on the 2nd pop-up, it picks up where the first pop-up left off starting me at 2008. This gets confusing to the end users as they expect to always pop-up with current month/year. I do see a reset option for multiple pop-ups on one page.</description>
		<content:encoded><![CDATA[<p>I am having an issue where I have more than one calendar pop-up on a page. I click the first pop-up, it works great..say I select 01/01/2008, the problem is when I click on the 2nd pop-up, it picks up where the first pop-up left off starting me at 2008. This gets confusing to the end users as they expect to always pop-up with current month/year. I do see a reset option for multiple pop-ups on one page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NJ DUI Attorney</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-1/#comment-961</link>
		<dc:creator>NJ DUI Attorney</dc:creator>
		<pubDate>Tue, 22 Feb 2011 16:20:55 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-961</guid>
		<description>@msGodscrasher I don&#039;t think that it&#039;s possible .. but post it here if you manage to make it work .. 

Nice tool by the way ..</description>
		<content:encoded><![CDATA[<p>@msGodscrasher I don&#8217;t think that it&#8217;s possible .. but post it here if you manage to make it work .. </p>
<p>Nice tool by the way ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deepa</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-1/#comment-959</link>
		<dc:creator>deepa</dc:creator>
		<pubDate>Tue, 08 Feb 2011 17:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-959</guid>
		<description>Really nice &amp; helpful widget. I used it and works great!</description>
		<content:encoded><![CDATA[<p>Really nice &amp; helpful widget. I used it and works great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: msGodscrasher</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-1/#comment-958</link>
		<dc:creator>msGodscrasher</dc:creator>
		<pubDate>Fri, 04 Feb 2011 16:38:51 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-958</guid>
		<description>Hi please could you tell me how i could use the calendar within adf jdeveloper please?</description>
		<content:encoded><![CDATA[<p>Hi please could you tell me how i could use the calendar within adf jdeveloper please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adisan</title>
		<link>http://codetale.com/2009/06/21/javascript-calendar-widget-108/comment-page-1/#comment-957</link>
		<dc:creator>adisan</dc:creator>
		<pubDate>Mon, 17 Jan 2011 16:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://codetale.com/?p=14#comment-957</guid>
		<description>@Mao,
play with the css, the answer is there:)</description>
		<content:encoded><![CDATA[<p>@Mao,<br />
play with the css, the answer is there:)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

