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.
Views
Replies
Total Likes
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
Views
Replies
Total Likes
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
Views
Replies
Total Likes
Thank you very much.
Parre
Views
Replies
Total Likes
Views
Likes
Replies