<?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 unthunk</title>
	<atom:link href="http://blog.unthunk.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.unthunk.com</link>
	<description>headcheese and mukluks</description>
	<lastBuildDate>Fri, 03 Feb 2012 05:02:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Put the Clear Button Back in Datepicker by Dylan</title>
		<link>http://blog.unthunk.com/2009/02/09/put-the-clear-button-back-in-datepicker/comment-page-1/#comment-84</link>
		<dc:creator>Dylan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 05:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=42#comment-84</guid>
		<description>Thanks Sayed, that worked well.
Only change was to only use event.which == 8 for the delete key since backspace caused IE8 to navigate back (making it pointless.)
Cheers.</description>
		<content:encoded><![CDATA[<p>Thanks Sayed, that worked well.<br />
Only change was to only use event.which == 8 for the delete key since backspace caused IE8 to navigate back (making it pointless.)<br />
Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Latasha Clark</title>
		<link>http://blog.unthunk.com/about/comment-page-1/#comment-63</link>
		<dc:creator>Latasha Clark</dc:creator>
		<pubDate>Fri, 22 Jul 2011 14:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?page_id=2#comment-63</guid>
		<description>I am writing you today to ask for your assistance as a app developer. Please contact me at 1.919.333.2899. Thanks!</description>
		<content:encoded><![CDATA[<p>I am writing you today to ask for your assistance as a app developer. Please contact me at 1.919.333.2899. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put the Clear Button Back in Datepicker by Sayed</title>
		<link>http://blog.unthunk.com/2009/02/09/put-the-clear-button-back-in-datepicker/comment-page-1/#comment-57</link>
		<dc:creator>Sayed</dc:creator>
		<pubDate>Sun, 13 Feb 2011 15:40:23 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=42#comment-57</guid>
		<description>I solved the issue of clearing read-only date fields by adding a keydown trigger(keypress doesn&#039;t work with delete and backspace keys):

$(&quot;#datefld&quot;).keydown(function(event) 
                    {
                        //if &quot;backspace&quot; or &quot;delete&quot; key pressed...
                        if (event.which == 8 &#124;&#124; event.which == 46)
                        {
                            $(this).val(&quot;&quot;);   
                        }
                    }
                );</description>
		<content:encoded><![CDATA[<p>I solved the issue of clearing read-only date fields by adding a keydown trigger(keypress doesn&#8217;t work with delete and backspace keys):</p>
<p>$(&#8220;#datefld&#8221;).keydown(function(event)<br />
                    {<br />
                        //if &#8220;backspace&#8221; or &#8220;delete&#8221; key pressed&#8230;<br />
                        if (event.which == 8 || event.which == 46)<br />
                        {<br />
                            $(this).val(&#8220;&#8221;);<br />
                        }<br />
                    }<br />
                );</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put the Clear Button Back in Datepicker by Adam</title>
		<link>http://blog.unthunk.com/2009/02/09/put-the-clear-button-back-in-datepicker/comment-page-1/#comment-55</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Thu, 27 Jan 2011 15:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=42#comment-55</guid>
		<description>I agree wholeheartedly with the above! The clear button is an absolute must.

The so called work around that has been suggested by Scott (http://bugs.jqueryui.com/ticket/3999#comment:10) is a fail, because the button disappears after you navigate between months.

It should be easily possible to add this button back to the datepicker, but simply display it only when a certain configuration flag is set to true.

Are the folks at jQuery really that ignorant? I find that hard to believe given what they are capable of making.</description>
		<content:encoded><![CDATA[<p>I agree wholeheartedly with the above! The clear button is an absolute must.</p>
<p>The so called work around that has been suggested by Scott (<a href="http://bugs.jqueryui.com/ticket/3999#comment:10" rel="nofollow">http://bugs.jqueryui.com/ticket/3999#comment:10</a>) is a fail, because the button disappears after you navigate between months.</p>
<p>It should be easily possible to add this button back to the datepicker, but simply display it only when a certain configuration flag is set to true.</p>
<p>Are the folks at jQuery really that ignorant? I find that hard to believe given what they are capable of making.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put the Clear Button Back in Datepicker by Gary</title>
		<link>http://blog.unthunk.com/2009/02/09/put-the-clear-button-back-in-datepicker/comment-page-1/#comment-41</link>
		<dc:creator>Gary</dc:creator>
		<pubDate>Mon, 13 Dec 2010 18:02:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=42#comment-41</guid>
		<description>Well, 1.8.7 is out and apparently they did not add the Clear button back in, or I cant find the functionality....</description>
		<content:encoded><![CDATA[<p>Well, 1.8.7 is out and apparently they did not add the Clear button back in, or I cant find the functionality&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Googlewhacking is dead. Long live Googlewhacking! by ritchie</title>
		<link>http://blog.unthunk.com/2010/01/30/googlewhacking-is-dead-long-live-googlewhacking/comment-page-1/#comment-39</link>
		<dc:creator>ritchie</dc:creator>
		<pubDate>Sat, 25 Sep 2010 13:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=89#comment-39</guid>
		<description>I found a googlewhack that works straight into google now.</description>
		<content:encoded><![CDATA[<p>I found a googlewhack that works straight into google now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put the Clear Button Back in Datepicker by JM</title>
		<link>http://blog.unthunk.com/2009/02/09/put-the-clear-button-back-in-datepicker/comment-page-1/#comment-38</link>
		<dc:creator>JM</dc:creator>
		<pubDate>Mon, 07 Jun 2010 12:36:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=42#comment-38</guid>
		<description>I would also like a clear button, preferably configurable to appear or not.

Concerning the client/server side validation of the date: My approach has always been, and will always be, that while client-side validation is convenient for the user, you should always validate server-side too, and be prepared to handle any errors generated there. Never rely exclusively on client-side scripts for data validation.</description>
		<content:encoded><![CDATA[<p>I would also like a clear button, preferably configurable to appear or not.</p>
<p>Concerning the client/server side validation of the date: My approach has always been, and will always be, that while client-side validation is convenient for the user, you should always validate server-side too, and be prepared to handle any errors generated there. Never rely exclusively on client-side scripts for data validation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put the Clear Button Back in Datepicker by Hubert</title>
		<link>http://blog.unthunk.com/2009/02/09/put-the-clear-button-back-in-datepicker/comment-page-1/#comment-27</link>
		<dc:creator>Hubert</dc:creator>
		<pubDate>Mon, 15 Mar 2010 14:12:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=42#comment-27</guid>
		<description>Great blog.

Same here. Please bring back the clear button! Any workarounds? Thanks.</description>
		<content:encoded><![CDATA[<p>Great blog.</p>
<p>Same here. Please bring back the clear button! Any workarounds? Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Put the Clear Button Back in Datepicker by Ryan</title>
		<link>http://blog.unthunk.com/2009/02/09/put-the-clear-button-back-in-datepicker/comment-page-1/#comment-26</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 23 Feb 2010 21:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=42#comment-26</guid>
		<description>Does anyone have some example code showing how to add a clear button?

I think its a little ridiculous that the jQuery UI people don&#039;t think its necessary.

Its a common use case I&#039;ve seen many many times: The server requires dates in a specific format.  So the field is set to read only, forcing the user to use the date picker.  But once they select a date they can&#039;t clear it!  I am having issues now in several areas of our site because user&#039;s can&#039;t clear the date.  We have many search forms that use dates, sometimes they put in a date but later want to pull it out after doing several searches.  Right now they have to refresh the whole page, loosing all their other search criteria.</description>
		<content:encoded><![CDATA[<p>Does anyone have some example code showing how to add a clear button?</p>
<p>I think its a little ridiculous that the jQuery UI people don&#8217;t think its necessary.</p>
<p>Its a common use case I&#8217;ve seen many many times: The server requires dates in a specific format.  So the field is set to read only, forcing the user to use the date picker.  But once they select a date they can&#8217;t clear it!  I am having issues now in several areas of our site because user&#8217;s can&#8217;t clear the date.  We have many search forms that use dates, sometimes they put in a date but later want to pull it out after doing several searches.  Right now they have to refresh the whole page, loosing all their other search criteria.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on It&#8217;s Dead, Jim by Googlewhacking is dead. Long live Googlewhacking! &#124; unthunk &#124; headcheese and mukluks</title>
		<link>http://blog.unthunk.com/2009/12/08/its-dead-jim/comment-page-1/#comment-23</link>
		<dc:creator>Googlewhacking is dead. Long live Googlewhacking! &#124; unthunk &#124; headcheese and mukluks</dc:creator>
		<pubDate>Sun, 31 Jan 2010 04:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.unthunk.com/?p=80#comment-23</guid>
		<description>[...] in November, Google made some changes that effectively killed Googlewhacking at Googlewhack and Unthunk.  This past week I heard from a few old Googlewhacking friends [...]</description>
		<content:encoded><![CDATA[<p>[...] in November, Google made some changes that effectively killed Googlewhacking at Googlewhack and Unthunk.  This past week I heard from a few old Googlewhacking friends [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

