Avatar

Level 7

You need to limit the number of characters allowed in the field to 8. You can do this with a script on the change event using javascript.

if(xfa.event.newText > 99999999 || xfa.event.newText < -99999999) { xfa.event.change = "";}