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.

Change the caption of a TextField with JavaScript

Avatar

Former Community Member
Hi,



I'm working on an multi language form with the Livecycle Designer 8.2.



My form includes a couple of Text fields with captions in English. I've implemented a button to change the language of the captions into French through a "click" JavaScript Event.



But I'm still not able to perform the caption language change with my code:



Myform.multilang.bt_english::click - (JavaScript, client)

[...]

xfa.resolveNode("tf_site.caption.value.#text").value = "French Caption";

[...]



Has there anybody an hint for me?
2 Replies

Avatar

Former Community Member
Is you form a dynamic or static PDF? Ensure that it is dynamic.

Avatar

Level 7

A bit late, but might help someone.

In Javascript use

myObject.caption.value.text.value = "New Caption Name";