<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<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">
	<channel>
		<title>Gravity Support Forums Topic: Datepicker Let&#039;s Older Dates Be Chosen and Won&#039;t Auto Close on Selection</title>
		<link>https://legacy.forums.gravityhelp.com/topic/datepicker-lets-older-dates-be-chosen-and-wont-auto-close-on-selection</link>
		<description>Gravity Support Forums Topic: Datepicker Let&#039;s Older Dates Be Chosen and Won&#039;t Auto Close on Selection</description>
		<language>en-US</language>
		<pubDate>Tue, 14 Apr 2026 23:59:28 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/datepicker-lets-older-dates-be-chosen-and-wont-auto-close-on-selection" rel="self" type="application/rss+xml" />

		<item>
			<title>James on "Datepicker Let&#039;s Older Dates Be Chosen and Won&#039;t Auto Close on Selection"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/datepicker-lets-older-dates-be-chosen-and-wont-auto-close-on-selection#post-252682</link>
			<pubDate>Tue, 14 May 2013 10:34:25 +0000</pubDate>
			<dc:creator>James</dc:creator>
			<guid isPermaLink="false">252682@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That's the plan... I just have to remember how to use SubVersion again and then I'll add it in.&#60;/p&#62;
&#60;p&#62;Once I've added it I'll post a link here if that's ok?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Datepicker Let&#039;s Older Dates Be Chosen and Won&#039;t Auto Close on Selection"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/datepicker-lets-older-dates-be-chosen-and-wont-auto-close-on-selection#post-252670</link>
			<pubDate>Tue, 14 May 2013 10:24:44 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">252670@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Are you going to be able to get that on the WordPress Extend Plugins as most people feel comfortable getting things from there. And that's great that you've developed it. I hope it helps lots of people.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James on "Datepicker Let&#039;s Older Dates Be Chosen and Won&#039;t Auto Close on Selection"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/datepicker-lets-older-dates-be-chosen-and-wont-auto-close-on-selection#post-252606</link>
			<pubDate>Tue, 14 May 2013 09:40:32 +0000</pubDate>
			<dc:creator>James</dc:creator>
			<guid isPermaLink="false">252606@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I've seen a few people here needing a datepicker with a limited date range, myself included. So I've written a self contained plugin that adds an additional Advanced field that can have a restricted start date, end date, or date range. It has customisable validation messages and works just like a normal Gravity Forms field.&#60;/p&#62;
&#60;p&#62;It's free and hopefully people will find it useful - feedback is always appreciated.&#60;/p&#62;
&#60;p&#62;You can get it here: &#60;a href=&#34;http://www.smartredfox.com/2013/05/gravity-forms-limited-date-field/&#34; rel=&#34;nofollow&#34;&#62;http://www.smartredfox.com/2013/05/gravity-forms-limited-date-field/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Datepicker Let&#039;s Older Dates Be Chosen and Won&#039;t Auto Close on Selection"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/datepicker-lets-older-dates-be-chosen-and-wont-auto-close-on-selection#post-162469</link>
			<pubDate>Wed, 06 Mar 2013 22:42:46 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">162469@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The default datepicker doesn't have a range limit. You would have to add some script to your theme files to prevent past dates.. you would add this to the header.php file of your theme or wherever your theme provider suggest you put custom scripts.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
jQuery(function () {

  var date = new Date();
  var currentMonth = date.getMonth();
  var currentDate = date.getDate();
  var currentYear = date.getFullYear();

  jQuery(&#38;#39;#&#38;lt;%= txtDate.ClientID  %&#38;gt;&#38;#39;).datepicker({
      minDate: new Date(currentYear, currentMonth, currentDate)
  });
});
&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;a href=&#34;http://codeasp.net/blogs/raghav_khunger/microsoft-net/1084/jquery-datepicker-disable-past-dates&#34; rel=&#34;nofollow&#34;&#62;http://codeasp.net/blogs/raghav_khunger/microsoft-net/1084/jquery-datepicker-disable-past-dates&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;As far as the not closing issue.. hard to say. Can you post a URL to your form so we can take a look?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Lynne Pisan on "Datepicker Let&#039;s Older Dates Be Chosen and Won&#039;t Auto Close on Selection"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/datepicker-lets-older-dates-be-chosen-and-wont-auto-close-on-selection#post-162256</link>
			<pubDate>Wed, 06 Mar 2013 17:16:28 +0000</pubDate>
			<dc:creator>Lynne Pisan</dc:creator>
			<guid isPermaLink="false">162256@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The title says it all and I can't figure it out. I also can't seem to find a solution searching for it here.&#60;/p&#62;
&#60;p&#62;The datepicker won't close after a selected date is chosen and it also lets you choose old past dates. &#60;/p&#62;
&#60;p&#62;What is the issue here?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
