How to edit text in a text field that is prefilled from a drop down selection
I currently have a drop down menu (attorney name) with various selections. Each selection has a specific export value which is then prefilled into a text field (law firm). I have allowed users to enter custom text in the drop down field if their selection is not one of the options. The issue is, whatever is entered as the custom texts automatically transfers to the text field (law firm). I would like both of these fields to be editable.
The text field has a custom calculation script of:
event.value = this.getField("attorney name").valueAsString;
