This content has been marked as final.
Show 1 reply
-
1. Re: Required field dependent on another field in PDF form
George_Johnson Feb 18, 2011 8:10 AM (in response to Kenneth Benson)Sure. In the Mouse Up event of each radio button, do something like:
// Mouse Up JavaScript for radio button;
getField("phone_number").required = event.target.value === "Yes" ? true : false;
where "Yes" is the button value of the Yes radio button and "phone_number" is the name of the phone number field. Adjust these to match what you're using.



