Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.
SOLVED

Set Field as Required

Avatar

Level 4

I would like to make a field required based on the which radio button is selected. Example:

     Next available date

     Specific date

     If the user selects specific date then the following date field need to be required.

Thanks you any assistance.

Parre

1 Accepted Solution

Avatar

Correct answer by
Level 10

You can write in the click event of the radiobutton: Java Script

if(RadioButton1.rawValue == "Value to Compare"){

      SpecificDate.mandatory = "error";

}

else{

     SpecificDate.mandatory = "disabled";

}

Thanks

Srini

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

You can write in the click event of the radiobutton: Java Script

if(RadioButton1.rawValue == "Value to Compare"){

      SpecificDate.mandatory = "error";

}

else{

     SpecificDate.mandatory = "disabled";

}

Thanks

Srini