-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Howto: Create your own mask
Some day will come that you cannot create your mask with the default definitions or with some predefined aliases. So it's time to create it yourself.
Issue 220 - The following struggle. I would like to allow decimals in a phone field. The format/mask is free to enter for the user, but i would only allow one '-' for instance: 06-12345678
How can i restrict the dashes to one?
First thing to check. What is already available? Does there exist an alias? Does there exist a definition? What gets close?
a mask like $(selector).inputmask("9", { repeat: 10, greedy: false}); is close.
So we start with the definition of 9 and rename it to p (p ~ phonenumber)
'9': {
validator: "[0-9]",
cardinality: 1
}
'p': {
validator: "[0-9]",
cardinality: 1
}
We need to allow the definition to allow a '-' in the mask. So we adjust the regex to just do that.
'p': {
validator: "[0-9\\-]",
cardinality: 1
}
to be continued, ...