The problem is that the text values and radio button values are not showing correctly. Here is the form filled out:
But this is what is presented like after the submit button is clicked:
The problem is that the text values and radio button values are not showing correctly. Here is the form filled out:
But this is what is presented like after the submit button is clicked:
It looks like the fields in question are marked as read-only. Is that correct?
Do you do the calculation using Forms' out of box calculation or using custom JavaScript? If you are using customize JavaScript, the value won't be submitted for field marked as read-only for security reason. You can uncheck the "read-only" option from the field settings but use JavaScript to set it read-only as following:
$('.readonly input').attr("readonly","true");
Yes, the Text field was a read only field and I unselected that option and used the jquery
$('.readonly input').attr("readonly","true");
That fixed the issue with that field.
The radio field is required, but I am changing whether an option is disabled with jquery.
document.getElementById('Field151-0').disabled = false;
document.getElementById('Field151-1').disabled = true;
Set the radio button with disabled attribute will make the value not be submitted.(http://www.w3schools.com/tags/att_input_disabled.asp). And radio button element has no readonly attribute. You can change your script to set the radio button option to be enabled when it is selected to avoid this issue.