Would you show me a simple example of using a mask on a parameter that only allows numbers?
Is there a reason not to use an integer parameter?
Users are pasting in numbers with spaces. I want to prevent spaces and non-numeric data. I did get the following to work.
var maskOptions = { regex: "\d*" };
Log in to post a comment.
Would you show me a simple example of using a mask on a parameter that only allows numbers?
Is there a reason not to use an integer parameter?
Users are pasting in numbers with spaces. I want to prevent spaces and non-numeric data. I did get the following to work.
var maskOptions = { regex: "\d*" };