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.

How to fetch rawvalue of one field into another field in AL?

Avatar

Level 1

i need to make a value say for example,

Textfield1 should be visible when textfield2.rawvalue=1

textfield1 should be invisible when textfield2.rawvalue=2

How do i write a javascript in textfield1 to achieve this logic?

3 Replies

Avatar

Level 7

The javascript would probably need to be in textField2's events, maybe the exit event. When textField2 is exited, the event will execute.

textField2 Exit event javascript

switch(textField2.rawValue)

{

     case 1: //if textField is 1 when exited, execute this code

     textField1.presence = "visible";

     break;

     case 2: //if textField is 1 when exited, execute this code

     textField1.presence = "invisible";

     break;

     default: //this code runs when the above logic is not met

     //put code here that executes if when textField2 is exited, the rawValue isn't 1 or 2.

     break;

}

Avatar

Level 1

Thanks for your Answer.

But i need the value from Textfield1 and only at certain value i need the Textfield2 to be visible and not just in all exit cases.

Avatar

Level 10

Hi,

Can you explain the problem more, your last comment seems to be the opposite of your original comment?

Bruce