Expand my Community achievements bar.

Enhance your AEM Assets & Boost Your Development: [AEM Gems | June 19, 2024] Improving the Developer Experience with New APIs and Events

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

1 Reply