Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
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
Solved! Go to Solution.
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
Thank you very much.
Views
Likes
Replies