Planet PDF Forum Archive

Planet PDF ForumThe page you are viewing is part of our 160,000 page PDF discussion forum archive spanning 1999-2008. Would you believe we have a 2nd forum archive which covers 2008 - 2011? But... if you really want to bust-a-move head to the LIVE Planet PDF Forum. It features more than 10 conferences, covering everything from beginner discussions to in-depth developer and pre-press discussions.


How to search this archive. The quickest way is to use the filters on our Advanced Search page so that only archive pages are included in the results.


Previous | Next | (P-PDF) Forms & FDF


Topic: Re: Date Validation
Conf: (P-PDF) Forms & FDF, Msg: 63798
From: kt
Date: 5/29/2002 06:07 PM

>From: "Peter"
>
>I'm having trouble validating a date field. I have two fields one is the
>"submited" date the other is the "need by" date. I want a validation that
>will check to see if the "need by" date is at least 3 days ahead from the
>"submitted" date. Following is the code I was trying to use...
>
>// Get date from field
>
>var v1 = this.getField "Request").value;
>
>var d1 = this.getField("Date Required").value;
>
>// Turn date's into their numeric representation
>
>var vn1 = v1.valueOf();
>
>var dn1 = d1.valueOf();
>
>// numeric representation of 3 days
>
>var threedays = 1000 * 60 * 60 * 24 * 3;
>
>// Compare dates
>
>var vn2 = vn1 + threedays;
>
>if (vn2 < dn1) {
>
>"The date you have entered is not 3 days from the Date of Request"); }





Peter,

You have to convert the text entered by your user into a Date object.
You're starting with a String (whatever was typed by the user). That String
needs to be parsed into yr, mo, day and fed to:

new Date(yr,mo,day);

For example:

var a = getField('Request').value; // retrieve the user's date string

// we'll presume the user has followed a format of DD-MM-YYYY.

a=a.toString().split('-'); // split on hyphens

a[1] -= 1; // month must be zero-based

// now call the Date constructor:
var vn1 = new Date(a[2],a[1],a[0]);


After this code executes, vn1 contains a valid Date object, which is to
say, a millisecond representation of the date. You can then go ahead and do
millisecond arithmetic on it.

JavaScript expects the month to be zero-based, hence January is zero! This
makes the Date constructor happy. Otherwise, chaos.

It's all a little whacky until you get used to it. Any book on JavaScript
discusses Date objects to death. Acrobat follows the 1.2 implementation.









Kas Thomas

---------------------------------------
kt@acroforms.com www.acroforms.com
---------------------------------------



PDF In-Depth Free Product Trials Ubiquitous PDF

LockLizard Safeguard PDF Security

Made specifically for publishers of high value information published in PDF format, it protects your PDF...

Download free demo

ARTS PDF Aerialist X

The ultimate plug-in for Adobe Acrobat. Advanced splitting, merging, stamping, bookmarking, and link...

Download free demo

Ubiquitous PDF: DIY PDF magazines, courtesy of CNET and Magazinify

Thanks to Magazinify.com, it's possible to have web articles delivered right to your inbox in PDF form. If that weren't enough, the nice folks at CNET have been nice enough to publish a step-by-step guide about how to set this all up using just a little time and a free Magazinify account.

September 06, 2011
Search Planet PDF
more searching options...
PDF Resources
Platinum Sponsor

ARTS PDF

Create & Edit PDF - Nitro PDF Software

Silver Sponsors

LockLizard DRM PDF Security Quick PDF Library: The Unrivaled PDF Developer Toolkit

Featured Product

ARTS PDF Crackerjack X

The most popular Acrobat plug-in for PDF-based color print production and automation.

Featured Event

Adobe Digital Marketing Summit

March 20-23, 2012 -- Salt Palace Convention Center, Salt Lake City, Utah

The Digital Marketing Summit is the premier event for digital marketers and advertisers to learn about and share key strategies for driving marketing innovation. Attend Summit to learn how you can create, measure, and optimize digital experiences to revolutionize how the world engages with ideas and information.

PDF Store Categories