Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
I am very new at this program, in fact this is my first form. I am stuck on how to make the date field become mandatory once you select No to the radio buttons before (options are yes or no).
Any help would be greatly appreciated.
Thanks
Solved! Go to Solution.
You can write in the Click/ Exit event of the Radio Button..
Language: Java Script
DateField1.mandatory = "error"; // This line makes the Date field mandaotory.
DateField1.mandatory = "disabled"; // This line will Remove the mandaotory check.
Replace DateField1 with your control's name..
Srini
View solution in original post
Views
Likes
Replies