Hi I m new to AEM forms, Please can you tell me how to create a basic form with two fields and a validate button.
Requirnment : Validate button will check whether both fields left blank by using javascript.
Solved! Go to Solution.
Sorry, but this.value != "" isn't a good validation (see here on page 18).
You better use
this.rawValue !== null;
or the built-in method isNull() to check a fields value against null.
this.isNull();
You can make your filed mandatory to avoid JS.
Or
You can write your validation script under "Validate" expression.
If you are using rule editor its quite simple.
One sample validation is -
this.value !==null or this.isNull() for blank fields. Just write this script in validate expression.
Many thanks Hitesh for the reply can you share a sample form. Then I can learn. (I m pretty new to AEM software) :D
Views
Replies
Total Likes
Sorry, but this.value != "" isn't a good validation (see here on page 18).
You better use
this.rawValue !== null;
or the built-in method isNull() to check a fields value against null.
this.isNull();
radzmar wrote...
Sorry, but this.value != "" isn't a good validation (see here on page 18).
You better use
this.rawValue !== null;
or the built-in method isNull() to check a fields value against null.
this.isNull();
Thanks. I updated the answer !
Views
Replies
Total Likes