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

Dropdown to populate a list in a textfield

Avatar

Level 3

I need for a to be able to select from a dropdown list and specified item values appear in textfield.

For example if I select Amy

If I select Bob

If  I select Jane

Amy

Bob

Jane (I would like the list to appear as shown)

I have associated a value to each item in the drop down list so that the selection is easy to compare in order to determine which initial (default) value to set in the text field. In my drop down list's Change event, I have the following:

var sNewSel = this.boundItem(xfa.event.newText);

switch (sNewSel)

{

  case "1": //  Amy

     TextField1.rawValue = "Amy \n";

     break;

switch (sNewSel)

{

  case "2": //  Bob

     TextField1.rawValue = "Bob \n";

     break;

Of course this is not working only name is showing at a time. Please help!

Thanks

0 Replies