0
Community Beginner
,
/t5/acrobat-sdk-discussions/adding-to-value/td-p/11568600
Nov 04, 2020
Nov 04, 2020
Copy link to clipboard
Copied
Hi, I need help.
I have document level script that populates fields depending on dropdown field items, that part is working fine.
What I need is one of the fields is called "Weight" it is populated with numbers but lets say I have another dropdown that will populate same field but
this time I want value to add up to previous value. How would I do that?
TOPICS
Acrobat SDK and JavaScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Community Expert
,
Nov 04, 2020
Nov 04, 2020
In your document script where you use "Weight" field try change like this:
this.getField("Weight").value += Number(rest of your code goes here);
Community Expert
,
LATEST
/t5/acrobat-sdk-discussions/adding-to-value/m-p/11568823#M790
Nov 04, 2020
Nov 04, 2020
Copy link to clipboard
Copied
In your document script where you use "Weight" field try change like this:
this.getField("Weight").value += Number(rest of your code goes here);
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

