cancel
Showing results for 
Search instead for 
Did you mean: 

Java Script for making radio button mandatory

Former Member
0 Kudos

Dear Gurus

I am developing adobe form , which have 30 radio button groups . The form can't submit without all the radio button group ticked. i.e i want all the radio button mandatory. i done radio button->value-> Type->User Entered required but form not checking the radio button group whether it is filled or not.if java scripting is required then please suggest me the java script code.

Thanks In advance.

Chitta Ranjan Mahato

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Textfield1.mandatory = "error";

Textfield1.mandatoryMessage = "This field is required.";

TextField1.validate.nullTest = "error";

These are certain ways to check mandatory conditions using script. Otherwise you can try at the backend.

Thanks,

Aravind

Answers (0)