Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
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