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

Text field

Avatar

Level 2
Hi....



May i know the script with the following requirements?



If text has been entered into Text Field, then

fields pertaining to Age, Sex, Employment are mandatory?



Lost in the Woods....



Thanks!
7 Replies

Avatar

Level 4
Hi Win,



place the following script in the exit-event of your first Text Field:



if (this.rawValue != null && this.rawValue != ""){

Age.mandatory = "error";

Sex.mandatory = "error";

Employment.mandatory = "error";

}else

Age.mandatory = "disabled";

Sex.mandatory = "disabled";

Employment.mandatory = "disabled";



Regards,



RonnyR

Avatar

Level 2
Thanks so much! You've been great!

Avatar

Level 2
Hi Ronny,

I've tried on your above method, unfortunately, it is not working...

There is nor error prompt that the script has an error, neither does it prompt when the form filler exists the text field after inputting text.

Please help me further....

Sorry for the trouble and thanks.

Avatar

Level 4
Hi Win,



email me your form

ronny.ruyters@i-da.be

Avatar

Not applicable
Hi,

you can use the followio javascript code:



TextField.validate.nullTest="error";



This makes field mandatory.



🙂



Roberto Bellarmino

Avatar

Level 4
Robert,



This worked perfect for me.



Thanks for the suggestion!



John