Is there a way to allow end user to overwrite a auto populated text field
I have a text field,"Text 2", that includes the following JavaScript in the calculation field that auto populates this text field from two previous text fields:
event.value = this.getField("Text A").valueAsString + " " + this.getField("Text B").valueAsString;
In most cases what would then populate the "Text 2" field would be correct, but sometimes the end user might want to alter the resulting text in "Text 2". Is there anything that could be added to the above script that would allow the end user overwrite what has auto populated in the "Text 2"?
Thank you in advance for time and help!

