


Hi,
I have a form with java script. When the form is open the script fill the today date.
When the document is reopened with the date pre-filled, it dont change.
I put the code in the postsave event, but the date doesnt lock.
Any Idea ?
if (this.getField ("DateDemand").value =="")
{
this.getField ("DateDemand").defaultValue = util.printd ("mm/dd/yyyy", new Date());
this.getField ("DateDemand").value = this.getField ("Today").defaultValue;
}
Regards
Pierre
Views
Replies
Sign in to like this content
Total Likes
Hi,
you syntax is "wrong", because the JavaScript in Designer is different to that you use in Acrobat.
Add, the following In the preSave event of your date field.
if (this.isNull) {
this.rawValue = util.printd ("mm/dd/yyyy", new Date());
}
Views
Replies
Sign in to like this content
Total Likes
HI, i try it but the day is changing.
Anything else ??
Views
Replies
Sign in to like this content
Total Likes
OK,
I apoligize !
I was not loking after the pdf is save.
Everythink OK
Thanks !!
PGAG
Views
Replies
Sign in to like this content
Total Likes