Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

Lock today field afer save

Avatar

Level 2

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

3 Replies

Avatar

Level 10

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());


}


Avatar

Level 2

HI,  i try it but the day is changing.

Anything else ??

Avatar

Level 2

OK,

I apoligize !

I was not loking after the pdf is save.

Everythink OK

Thanks !!

PGAG