Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.

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

Former Community Member
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

Former Community Member
\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"