Hi,
I have a form with many fields and I have added some input validation to some of the fields, basically to check that they are not blank,
@If(field_name=“”;@Failure(“message here)”);@Success)
This sort of works, but I get the message popup as soon as I create / open the document instead of when you select the field and then move to another field with anything in it.
Any ideas on this one ?
thanks
sCott
Subject: Input validation
Check if you have added the validation conde in Window title event.
HTH
Prashant
Subject: Input validation
Where have you put your formula? If you have put it in the field input validation event, you might want to check that the field is editable, rather than computed or computed for composed.
Katherine
Subject: Just change them slightly:
@If(@IsDocBeingSaved & field_name=“”;@Failure(“message here)”);@Success)