- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
You can execute all of the validations on a form with a single command and it wil return a true if one of the validations fails or a false if there are no validation errors. So on the button that the user clicks (it needs to be a regular button) you could write code like this on the click event:
if (form1.execValidate() == false){
app.alert("You have not filled out all of the required fields....")
} else {
put your print command here......
}
This assumes that your root node in the form is form1 (look at the top level node in the hierarchy view).
Hope that helps
Paul
Views
Replies
0 Likes
Total Likes