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

three levels of drop-down

forree
Registered: Apr 9 2008
Posts: 3

Hi all,
I'm really new to this but I'm wondering if someone can provide the script needed to use three linked drop-downs. I'd like the contents of the 3rd drop-down to be determined by what was selected by the second, and the second determined by the first.
As an example, by clicking Earth in the first dropdown, the second would provide only countries on earth, and by clicking the Australia country, the third drop-down would display only cities in Australia.
Hope that makes sence but I've been fluffing around for a day-or-so and I'm really struggling.
Thankyou!!!

My Product Information:
LiveCycle Designer, Windows
djinges
Registered: Jun 27 2007
Posts: 55
hi, hi,

looking after dynamic purchase order as ex!
forree
Registered: Apr 9 2008
Posts: 3
Hi,
Yes I've seen the dynamic purchase order sample however I can't seem to add a third drop-down to that script.
This may be asking a little much but can anyone provide a working 3 tiered drop-down script or form example so I can pull it apart?
Thankyou very much for anyone that can assist,
Dammi
Registered: Sep 23 2008
Posts: 1
hello all! Am working on a form which contain a drop-down object, in case of selection from this drop-down, i want make sure that a numeric field object is assigned a certain value. Here is the code I used for this purpose, but it seems not working:

switch(xfa.event.change)
{
case "something":
UnitPrice[0].rawValue = 2500;
break;

case "something 2":
UnitPrice[0].rawValue = 3000;
break;

case "something 3":
UnitPrice[0].rawValue = 4000;
break;
}

can someone assist?

Thanx