Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

if/else with verify

Avatar

Level 2

This is the script i have in the Change event of a checkbox:

if (xfa.resolveNode("this").rawValue == "1" && SSN.isNull)

{

     SSN.mandatory = "error";

     app.alert("Please fill in the Dependent SSN portion of this form.");    

}

else

{

     SSN.mandatory = "disabled";

     }

I also need this to verify that the "age" field is >= 1, if not return a message.

3 Replies

Avatar

Level 10

Hi,

If you are using the change event, you need to bear in mind that the event fires BEFORE the user's input has registered in the object's .rawValue.

Either use xfa.event.newText instead of this.rawValue OR move the script to the clcik event (where this.rawValue is appropriate).

I haven't checked the script - too late,

Niall

Avatar

Level 2

This script does what i want, i just need to add the verify "age" field thing.

Avatar

Level 10

Hi,

I am surprised you are getting the script to work where you are using .rawValue in the change event.

In any case, if you can to test the age field, then you have a couple of choices.

  1. You can incorporate it into the existing if/else statement, by using a && to create an "and" condition.
  2. You can extend the existing if/else statement with an else if(). For example, if()/else if()/else.
  3. Or you can create a completely separate if/else statement after the first one (eg in the same event).

Hope that helps,

Niall