• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

javascript on page open item

Explorer ,
Nov 22, 2017 Nov 22, 2017

Copy link to clipboard

Copied

Hi (Acrobat CC)
I've become stuck on an issue. Please excuse me, I'm a designer not programmer, and have struggled to find a solution.

I have created a form which contains an 'on page open' javascript to fill a field with the following:

var today = new Date();

this.getField("Today").value = "GCF-01-" + util.printd("mmddyyyy", today);

this.getField("Today").readonly = true;

this performs the task I require, but I want this field 'locked' when populated, so that when the form is opened again the original date remains rather than being updated.

Would someone be able to help please?

MTIA Steve

TOPICS
Acrobat SDK and JavaScript

Views

401

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Nov 22, 2017 Nov 22, 2017

Replace this line:

this.getField("Today").value = "GCF-01-" + util.printd("mmddyyyy", today);

Votes

Translate

Translate
Community Expert ,
Nov 22, 2017 Nov 22, 2017

Copy link to clipboard

Copied

Fill the field when it is empty:

if (this.getField("Today").value == "") this.getField("Today").value = "GCF-01-" + util.printd("mmddyyyy", today);

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 22, 2017 Nov 22, 2017

Copy link to clipboard

Copied

Hi Bernd

Many thanks, do I add your code after the existing?

I tried yours alone and nothing appeared.

Steve

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 22, 2017 Nov 22, 2017

Copy link to clipboard

Copied

Replace this line:

this.getField("Today").value = "GCF-01-" + util.printd("mmddyyyy", today);

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Nov 22, 2017 Nov 22, 2017

Copy link to clipboard

Copied

LATEST

thanks, that's my ignorance.

When I started to look at the two pieces of code I could see that might be the answer, thank you for confirming!

Steve

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines