These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Bullet 2 based on Bullet 1 choice

Gillian
Registered: Jul 10 2007
Posts: 63

I have two bullets:
 
Safety: Yes, No
Routing: Standard, Expedited.
 
If User picks Safety:Yes, I want the Routing to automatically display as Expedited.
 
What's the correct JavaScript code for this?
 
Here's the code I tried that didn't work:
 
if (this.rawValue == 1)
{
Routing.Standard.rawValue=off;
Routing.Expedited.rawValue=on;
}
else if
{
(this.rawValue== 2)
Routing.Expedited.rawValue=off;
Routing.Standard.rawValue=on;
}

-Gillian

My Product Information:
LiveCycle Designer, Windows
SLDC
Registered: Oct 25 2010
Posts: 70
Instead of "off" and "on", use 1 and 2.