hi
Can i create a customfield (numeric field) that only stores 9 number:
for example an phone number :999999999
maybe there is a code that i can write in the field´s descripcion
Thx
Please refer this code and do necessary changes.
<script> var re = /[0-9]{9}$/; var val = document.getElementById("customfield_10403").value; var str = "test"; if(! re.test(val)){ alert("Invalid phone number"); } </script>
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.