Hmmm that's an interesting dilemma for sure!Here's a workaround you can
try:1) Create a hidden field on your form (i.e. txtField)2) On the Exit
event of each field needing to be validated, set txtField.rawValue to
this.name (this.name will get you the node's name)3) On the Change event
of txtField, have a simple script similar to as
follows:xfa.resolveNode(this.rawValue).execValidate();The above should
force the validate event to fire even when leaving the field without
editing it at all.As an a...