Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

beginners Problem with textfield

Avatar

Level 2

In the following pdf I have made (as in the video) one field with a dropdownlist and a second field with a textfield.

as in the video I wrote the syntax to the textfield (of course in javascript). When changing the values from the Dropdown the same value should be shown in the textfield - but nothing ist happening.

I can't finde any mistake ???

1 Accepted Solution

Avatar

Correct answer by
Level 2

Hi jm29468764,

"this.rawValue" in the switch-Section cannot work (i guess...), as the value of the adressed field (Textfeld1) is always empty - so no switch is triggered.

If possible (I use ES 4) use the (in german) "Aktionsgenerator" (action Generator) to perform this task. I've done this and this code shows up:

//Formular1.#subform[0].DropdownListe1::change - (JavaScript, client)

this.resolveNode("Textfeld1").rawValue = $.boundItem(xfa.event.newText);

Hope this helps.

Regadrs

Dietmar

View solution in original post

3 Replies

Avatar

Level 2

Sorry, I can nothing find to make an upload,  so I show here the syntax:

Syntax.JPGdropdownliste.JPGTextfeld.JPG

Avatar

Correct answer by
Level 2

Hi jm29468764,

"this.rawValue" in the switch-Section cannot work (i guess...), as the value of the adressed field (Textfeld1) is always empty - so no switch is triggered.

If possible (I use ES 4) use the (in german) "Aktionsgenerator" (action Generator) to perform this task. I've done this and this code shows up:

//Formular1.#subform[0].DropdownListe1::change - (JavaScript, client)

this.resolveNode("Textfeld1").rawValue = $.boundItem(xfa.event.newText);

Hope this helps.

Regadrs

Dietmar

Avatar

Level 2

alassir, thank you, you helped me!!

regards

jm29468764