Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
This conversation has been locked due to inactivity. Please create a new post.
Hi All,
Numeric AEM form field is stripping preceding zeros fields.
How to have preceding zero added in numeric field.
Solved! Go to Solution.
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 = "";
View solution in original post
Views
Likes
Replies