what is the code of only accept numerics only 10 digits

Kishore Babu S
Tera Contributor

what is the code of only accept   numerics only 10 digits

if end user tries to enter the alphabets it show one message it accepts only numerics

5 REPLIES 5

Not applicable

anjalichoudhary
Kilo Guru

Hi Kishore,



These below links will help you to create your query:



INteger only field



String field to accept only numeric values



Can i force a from field to only accept numeric value?



Please mark Helpful or Correct as per impact of the response!!



Thanks,


Anjali


Not applicable

Hi Kishore,



You can try the below code in your client script :



var val = g_form.getValue('<name_of_variable>');


// regex to allow only 10 numeric digits
if(!
/^\d{10}$/.test(val)) {


      alert('Only 10 numeric digits allowed');


  return false;


}



I haven't tested the code but it should work fine.



Thanks,


Mohammed Zeeshan