0
Convert CSV data in text field to a List in anther text field
New Here
,
/t5/acrobat-sdk-discussions/convert-csv-data-in-text-field-to-a-list-in-anther-text-field/td-p/11427116
Sep 11, 2020
Sep 11, 2020
Copy link to clipboard
Copied
Trying to Document-Level JavaScript to get comma separated values shown in one text field to show as a list in another multiline text field.
Example (csv): 1SZ,ATT,FHS,GU6
Needed Result:
1SZ
ATT
FHS
GU6
Current Document Level Javascript (no success):
function StockOptions(){
var stkOpt = this.getField("List_Options").valueAsString.split(",");
var oldValue = this.getField("Factory_Options").valueAsString;
this.getField("Factory_Options").setItems(stkOpt);
if(stkOpt.indexof(oldValue)!=-1) this.getField("Factory_Options").value = oldValue;
}
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
Community Expert
,
/t5/acrobat-sdk-discussions/convert-csv-data-in-text-field-to-a-list-in-anther-text-field/m-p/11427308#M2456
Sep 11, 2020
Sep 11, 2020
Copy link to clipboard
Copied
That code was written to populate a drop-down field, not a text field. Use this, instead:
this.getField("Factory_Options").value = this.getField("List_Options").valueAsString.replace(/,/g, "\n");
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
ratmasterpastor
AUTHOR
New Here
,
LATEST
/t5/acrobat-sdk-discussions/convert-csv-data-in-text-field-to-a-list-in-anther-text-field/m-p/11427602#M2457
Sep 11, 2020
Sep 11, 2020
Copy link to clipboard
Copied
that did it! Thank you
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

