Is there a javascript to format a text field to have number format and allow text as well?
Is there a javascript to format a text field to have number format and allow text as well?
Is there a javascript to format a text field to have number format and allow text as well?
No. At a time it will be either text or number. If I enter 10000, it should be formatted as 10,000. At some cases I will enter NONE. Usually if I enter text in numeric field, it won’t allow.
OK, then you can use this code as the field's custom Format script:
if (event.value && !isNaN(Number(event.value))) AFNumber_Format(2, 1, 0, 0, "", false);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.