


Hi All,
Numeric AEM form field is stripping preceding zeros fields.
How to have preceding zero added in numeric field.
Views
Replies
Sign in to like this content
Total Likes
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 = "";
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 = "";