Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list
SOLVED

Writing and if then else statement

Avatar

Level 3

I know this is a lot easier than I'm making it, but I've been trying to figure out the correct syntax all afternoon.

I have a table with 15 rows, if the column Change15 is = R, then I want column FarmDes15 to be visible

Any other value I want it to be invisible.

I have...

if ($.boundItem(xfa.event.newText) == "R") {

  this.resolveNode("FarmDes15").presence = "visible";

} else {

  this.resolveNode("FarmDes15").presence = "invisible";

}

which works, but whenever I choose a value for Change, it clears out all the other fields on the form.

Please help if you don't mind.

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 3

I finally figured this out.

if ( this.boundItem ( xfa.event.newText ) == "R")

{

    FarmDes1.presence = "visible";

}

else

{

    FarmDes1.presence = "hidden";

}

1 Reply

Avatar

Correct answer by
Level 3

I finally figured this out.

if ( this.boundItem ( xfa.event.newText ) == "R")

{

    FarmDes1.presence = "visible";

}

else

{

    FarmDes1.presence = "hidden";

}