0
Simplified Field Notation using Text
New Here
,
/t5/acrobat-discussions/simplified-field-notation-using-text/td-p/13568006
Feb 09, 2023
Feb 09, 2023
Copy link to clipboard
Copied
I have 3 drop down box fields called "AllOther", "Lightweight" and ModulaPlastic". I want to display the text from each of the drop down boxes in one text field using Simplified Field Notation. The format I actuallly want to use is as follows:
"AllOther" : "Ligthweight" : "Modular Plastic"
adding the colon sign and spaces before the colon and after.
Any suggestions? I'm running out of patience
TOPICS
How to
,
JavaScript
,
PDF forms
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-discussions/simplified-field-notation-using-text/m-p/13568517#M398708
Feb 09, 2023
Feb 09, 2023
Copy link to clipboard
Copied
Use this as the custom Calculation script:
event.value = this.getField("AllOther").valueAsString + " : " + this.getField("Ligthweight").valueAsString + " : " + this.getField("Modular Plastic").valueAsString;
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

