Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Dynamic change of static text widget value.

Avatar

Level 2

I am working on a requirement where I need to change the static text value depends on other form field inputs. I wrote below script in value commit event of a text field to modify static text widget value.

mySampleText.value= "Updated Text";

or

guideBridge.resolveNode("mySampleText").value = "Updated Text";

both scripts or working when both text box and static text are present under the same panel. However the static text is not getting updated if it is present in different panel. I Have noticed that the static text field widget value is changing only on 2nd value commit event of  TextBox ( Both widgets are in different panels ) ! This behavior is not consistent.

My scenario is to display multiple panel fields data as formatted paragraph text in last panel (i.e Signature) as attestation information. Please suggest an approach to update the static text field value to address requirement.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Scott,

Cannot say at the moment as I have tested this on different machines and it works. I would like to have a look at Abhilash's form here.

View solution in original post

7 Replies

Avatar

Employee Advisor

Abhilash,

Just tested this on 6.3.3 and it seems to be working.

Please use guideBridge.resolveNode("field").value = "sample Text";

Avatar

Level 2

I am using Adobe Experience Manager (6.3.2.1) and its not working. Static text Value is not getting changed for the first value commit event

Avatar

Correct answer by
Employee Advisor

Scott,

Cannot say at the moment as I have tested this on different machines and it works. I would like to have a look at Abhilash's form here.

Avatar

Employee Advisor

Can you download the form and share it over. You can inbox me directly.

Avatar

Level 10

Perfect - we closed this thread as the community member was asked to work directly with mayank.

Avatar

Employee Advisor

Sharing it across the wider audience, Adaptive form does not support setting value for static Text by scripting.

In such a case, the developer can  take two routes:

1.  Use a textbox instead, and using the style layer and change its appearance to be borderless.

2. First, focus the static Field that is in another Panel and then call the set value.

     guideBridge.setFocus(staticText2.somExpression); // Static text in different panel

     guideBridge.resolveNode("staticText2").value =this.value;

     staticText1.value=this.value;

     guideBridge.setFocus(this);