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

Help with Code Syntax error

Community Beginner ,
Sep 24, 2020 Sep 24, 2020

Copy link to clipboard

Copied

Can someone PLEASE, tell me where the error is in my code;

Here is the error:

SyntaxError: missing ] after element list
1: at line 2

 

Here is the code:

var fieldsToLock =["Name", "Student#:","Email:", "Phone#:", "Reference#:", Authorized by:", "Approved Amount","Approved Items:", "Price"]
[for (var i in fieldsToLock) this.getField(fieldsToLock[i]).readonly = true;]

 

I can't figure it out!

 

Thank you!

 

TOPICS
PDF forms

Views

322

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 ,
Sep 24, 2020 Sep 24, 2020

Copy link to clipboard

Copied

Hi,

 

This line does not need to be in [] .

[for (var i in fieldsToLock) this.getField(fieldsToLock[i]).readonly = true;]

I would do it like this

 

for (var i =0; i < fieldsToLock.length; i++) {

this.getField(fieldsToLock[i]).readonly = true;

}

This covers agianst older versions of Adobe Acrobat and Reader being used.

 

Regards

 

Malcolm

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 Beginner ,
Sep 24, 2020 Sep 24, 2020

Copy link to clipboard

Copied

Wonderful....I was reaching beyond my skills...you saved my day. Thanks for your time.

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
LEGEND ,
Sep 24, 2020 Sep 24, 2020

Copy link to clipboard

Copied

You can also see a missing quote - one of the items in the list does not start with "

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 Beginner ,
Sep 24, 2020 Sep 24, 2020

Copy link to clipboard

Copied

LATEST

Thank you for your eagle eye finding an issue. Thank you for your time.

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