Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

3 CheckBox with 1 TextField.

Avatar

Level 3
Hello,



I have a total of 3 CheckBoxes and 1 Textfield.



CheckBox1 - Dog

CheckBox2 - Cat

CheckBox3 - Mouse



TextField1 - Will show value of 1-3 CheckBoxes when checked.



I appreciate any response with a solution.



Thank You,

Arnold Love
4 Replies

Avatar

Level 10
On the exit of each checkbox:



TextField1.rawValue = TextField1.rawValue + " " + this.rawValue;

Avatar

Level 3
I'll try it right now. Thank you

Avatar

Level 3
Hi Paul,



It adds the value, how would I (add enter) so the text are seperate lines.



Example 1:



The dog is in the dog house. The cat is in a tree. (bad)



Example 2:

The dog is in the dog house.

The cat is in the tree



Viewing the text as in Example 2 is easier to read.



Thank You,

Arnold

Avatar

Level 10
\n is a newline in Javascript.



so If I were adding strings:



TextField1.rawValue = "The dog is in the dog houose." + "\n" + "The cat is in the tree"