Copy link to clipboard
Copied
I have a form set up to populate TextA from Dropdown1. I have export values set. That part works great. I have "Allow user to enter custom text" checked, and it doesn't work. The export value overrides. At Custom calculation script, I entered: event.value=this.getField("Dropdown1").value;
I'm using Version 2023.001.20064. Does anyone know of a fix?
Copy link to clipboard
Copied
Preface your code with this:
if (event.source && event.source.name=="Dropdown1")
Copy link to clipboard
Copied
Preface your code with this:
if (event.source && event.source.name=="Dropdown1")
Copy link to clipboard
Copied
Thank you for the response! This extra lines works perfectly.