Text field populating drop down, that populates other text fields
i have form intakes information prepare documents with, , throughout form same data collected multiple times. in beginning portion, our client's children information collected (name, phone number, address, etc) , children can later selected beneficiaries or not. after inputting children information, want populate drop down menus show name, , if name selected, want corresponding fields phone, address , not populate.
so example, have 2 children:
john doe, 555-555-5555, 123 mayfield drive
ana doe, 333-333-3333, 321 juniper street
so drop down should populate john doe, ana doe , able type in free-text (as pick else).
if picked drop list, phone , address of particular section should populated entered. if freehand type, other fields blank them free hand type.
hopefully makes sense.
you can start this:
two text fields named child1 , child2. when name entered in text field(s) becomes available in drop list.
i used javascript below on *pre-open event of droplist.
this.rawvalue = null;
this.clearitems();
this.additem(child1.rawvalue);
this.additem(child2.rawvalue);
More discussions in LiveCycle pre-ES (6.x and 7.x) discussions
adobe
Comments
Post a Comment