Drop down A to populate Drop down B, C, and D
i have several drop downs. drop down a, b, c, d , on. drop downs have same names in them different values. instance, drop down has list of names , export value person's address. drop down b has same list of names export values person's ssn's. drop down c has same names export values $15 or $23 etc (their hourly pay rate). , forth additional drop downs.
what when select person's name drop down a other drop downs show name return drop down's value automatically text field connected showing results drop down. text fielda show value of drop down a. text fieldb show value drop down b. text fieldc show value drop down c (and on).
is possible? me out example script can try out? greatly. guys.
these 2 separate issues. first copying value 1 drop-down others. second copying (export) values drop-downs text fields.
both relatively simple if of values same.
to copy value of dropdown dropdown b, c , d can use code custom validation script (make sure tick option commit selected value immediately):
this.getfield("dropdown b").value = event.value;
this.getfield("dropdown c").value = event.value;
this.getfield("dropdown d").value = event.value;
to copy value of dropdown text use script custom calculation script of latter:
event.value = this.getfield("dropdown a").value;
More discussions in JavaScript
adobe
Comments
Post a Comment