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

Default Text from another Text field

Avatar

Level 1

Hi,

I am trying to create a form which has 2 text fields. The first field a user must enter a value. The second text field is to use the value entered in the first field but allow it to be overidden if necessary without changing the text in field 1.

I have tried naming both text fields the same and setting the bindings to Global but if I change the input in the second field it changes the fields contents.

Hope this makes sense.

Please Help

Cheers
Damo

1 Accepted Solution

Avatar

Correct answer by
Former Community Member

Hi,

No need to play with the binding in this case.

Assuming that the names of your textfields are t1 and t2 enter this script on exit event of t1:

t2.rawValue=this.rawValue;

See attached example,

Yan.

View solution in original post

2 Replies

Avatar

Correct answer by
Former Community Member

Hi,

No need to play with the binding in this case.

Assuming that the names of your textfields are t1 and t2 enter this script on exit event of t1:

t2.rawValue=this.rawValue;

See attached example,

Yan.

Avatar

Level 1

Thanks heaps that works a treat

The following has evaluated to null or missing: ==> liqladmin("SELECT id, value FROM metrics WHERE id = 'net_accepted_solutions' and user.id = '${acceptedAnswer.author.id}'").data.items [in template "analytics-container" at line 83, column 41] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign answerAuthorNetSolutions = li... [in template "analytics-container" at line 83, column 5] ----