


I am trying to trigger a message box when I select "No" as a dropdown selection using the change event:
if(this.rawValue = "No"){xfa.host.messageBox("Please try again.","Error")}
However, it is triggered even when I select "Yes." Perhaps it may be due to the fact that the following script is in the "exit" event:
if(this.rawValue==null){this.execValidate();}
Views
Replies
Sign in to like this content
Total Likes
You have a syntax error. You want to change this.rawValue = "No" to be this.rawValue == "No". In your script this.rawValue = "No" you are actually setting the value of the field to be No so it will always be true.
Views
Replies
Sign in to like this content
Total Likes
You have a syntax error. You want to change this.rawValue = "No" to be this.rawValue == "No". In your script this.rawValue = "No" you are actually setting the value of the field to be No so it will always be true.
Views
Replies
Sign in to like this content
Total Likes