AEM form Numeric field removing Preceding Zeros
Hi All,
Numeric AEM form field is stripping preceding zeros fields.
How to have preceding zero added in numeric field.
Hi All,
Numeric AEM form field is stripping preceding zeros fields.
How to have preceding zero added in numeric field.
Check if you can do anything in script or field pattern.
Another alternative is :
Take the text field and add the below script in its change event
if(isNaN(xfa.event.change)) xfa.event.change = "";
if(isNaN(xfa.event.prevText)) xfa.event.change = "";
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.