Overwrite a text box populated based on radio button checking
Hi all,
I need help with the following issue in adobe forms:
I have a text box that is auto populated with some text if a radio button is checked. I use a calculation scrip in the text box field and it works fine. The only problem is that a user cannot edit and save the auto filled text.
What should I do?
The custom calculation script is somethig like this:
var a = this.getField("radio button").valueAsString;
var text = "text to be populate the text box";
if (a=="Choice1") event.value = text;
else event.value = " ";
