I have a form that has a list of yes or no questions which must be completed, they are set at user required and i have a small script that has brings up a message if the user does not complete question and tabs out and no entry is entered the message appears. the user then enters yes however the error comes up again as they have come out of the next question without answering it and have to go back, it is a bit messy.
Can anyone think of a different way of doing it?
on exit
if (this.rawValue == '' || this.rawValue == null){
xfa.host.messageBox("Please enter yes or no.");
}