How do you get the zero to stay in a field after you click out of it.
If my user enters a number that starts with zero, the zero disappears once they click out of the field. I need for the zero to stay. For example, they enter 09876, only 9876 shows
This is the script that I have so far in it.
.
var desiredLength = 9; // the number of digits the user should enter
event.rc = true;
if (event.value && event.value.length!=desiredLength) {
app.alert("You must enter exactly " + desiredLength + " digits.");
event.rc = false;
}
