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

Can I not an event script for a text field?

Avatar

Level 2

Bear with me please, I am new to LiveCycle!

I am currently creating a form, which some questions are not required unless a particular answer is selected, So I am hoping to have the optional questions hidden from layout until an answer is selected and if the question is needed it will become visible.  This has been fine, but I realised that if someone wants to print out the form to fill it out, obviously those hidden questions are not printed.  So I started adding a script in the event "prePrint" for each hidden field - this.presence = "visible";

Which seemed to be working.  Until i came to a text field I have used as a "Caption/Question Title" for checkboxes.

For example:

// The below is currently Hidden (excluded from layout)

Example Question 2                         o Answer 1  o Answer 2 o Answer 2

I can get Answer 1, 2 & 3 to print (with their checkboxes)  but the text field I used to write the question in, won't let me put a script in any event. Is this something that is just not possible?  Or am I doing something wrong?

I would also like to know if there is a much simpler way to just have all hidden fields visible when printed?  Or if it is just adding to each event in each field like I have been?

I hope all of this makes sense!

1 Accepted Solution

Avatar

Correct answer by
Level 7

Make Example Question 2 a TextField. You will then be able to change it's rawValue to whatever you need based on the checkbox selection. Change the caption Position to None in the layout tab and add the text in the object/value default text field.

1650484_pastedImage_0.png

1650485_pastedImage_1.png

1650486_pastedImage_2.png

I have also protected the TextField so the text can't be user changed.

This code effectively makes checkboxes work like radio buttons, only one can be checked at a time.

Is this what you are trying to do?

View solution in original post

4 Replies

Avatar

Level 7

Hi nicolec26875103​,

radzmar​ answered your other post regarding the hiding of all fields.

Check if you are you using a TextField or Text object?

The Text object cannot have any code in it.

1638416_pastedImage_1.png

Avatar

Level 2

I had made it a Text Object, as I couldn't figure out how to have two captions (The Question, and then the answers next to the checkboxes?

What would I use for the "Example Question 2"  so it can still be made with code in it?

For example:

Example Question 2                         o Answer 1  o Answer 2 o Answer 2

Avatar

Correct answer by
Level 7

Make Example Question 2 a TextField. You will then be able to change it's rawValue to whatever you need based on the checkbox selection. Change the caption Position to None in the layout tab and add the text in the object/value default text field.

1650484_pastedImage_0.png

1650485_pastedImage_1.png

1650486_pastedImage_2.png

I have also protected the TextField so the text can't be user changed.

This code effectively makes checkboxes work like radio buttons, only one can be checked at a time.

Is this what you are trying to do?

Avatar

Employee Advisor

you cannot have events for static text fields