Open fchristl opened 6 years ago
I have an input with a mask like this:
$('#tel').inputmask({ mask: '+ # # - (0) (# ){2,4} - (# ){3,6}', greedy: true });
When I focus the input field, the mask becomes:
+ _ _ - (0) _ _ - _ _ _
My understanding is that this is not a greedy behavior, as it only shows three instead of six placeholders in the end. What I would expect is
+ _ _ - (0) _ _ - _ _ _ _ _ _ _
Am I missing something or this actually a bug?
@fchristl ,
This is more like a missing feature in the repeats.
But I would expect it to be like below, if implemented.
+ _ _ - (0) _ _ _ _ - _ _ _ _ _ _ _
I have an input with a mask like this:
When I focus the input field, the mask becomes:
My understanding is that this is not a greedy behavior, as it only shows three instead of six placeholders in the end. What I would expect is
Am I missing something or this actually a bug?