-
In standard InputEvent exists inputType field, but it is not in CustomEvent generated by the InputMask lib. In our project, it is necessary to pass some validations in business logic. Is it possible t…
-
Hi,
try to mask currency with suffix, but then focus on input, caret position can be set after suffix.
Is it possible that it is not possible to set the cursor to the suffix?
Here the code:
`
$…
-
Let's use simple regex with optional group as suffix:
```
$(document).ready(function() {
$("#id").inputmask({
regex: '\\d(ab)?'
}).val('1ab');
…
-
[JsFiddle of the situation](https://jsfiddle.net/b9pv63hq/1/)
- Describe the bug
On pre-filled inputs, when using an array of masks, the plugin doesn't seem to be working correctly. With removeM…
-
I have bank card form with expiry that has `MM/YY` mask. Due to that, I have to specify `maxlength=5` for browser to understand that my format is not default `YYYY/MM`. [Here](https://github.com/whatw…
-
I am attempting to format currency input elements that have a non-conforming default value identifying the type of amount to be entered. I am not using labels as the default value of the input is used…
-
Hi, I'm having some trouble creating a custom mask. I need the "ip" mask that allows to insert also "*".
I used the "ip" mask and added the following regex: '25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|\*'
…
-
As I have started working on Gravity Form integration, I noticed they are not using php serialization to hold large amounts of data in a table field but are using JSON. Possibly handle this the same a…
-
Hi,
Is there a way to insert more than one dates in inputmask?
I saw we have a solution for multi-email mask. Could we have the same one for dates?
I need this mask for flatpickr with multiple sele…
-
Hello,
I was wondering if it was possible to get inputmask to support abbreviations such as 6k (six thousand) or 3m (three million) using available options and methods ?
If not, how (where) could …