You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I propose an addition to the API where you could add a placeholder element to override
the default placeholder character via formatCharacters.
Current behaviour: all characters are applied the same placeholder character, no matter the pattern.
Proposed behaviour: all symbols get the same placeholder character by default but it can be overwritten when passing in a pattern, like:
var mask = new InputMask({
pattern: '11ww', // An uppercase letter followed by 5 word characters
formatCharacters: {
'w': {
validate: function(char) { return /\w/.test(char) }
transform: function(char) { return char.toLowerCase() },
placeholder: 'A'
}
}
})
// results in
_ _ A A
Or a separate option after formatCharacters so we could also override the placeholders
for 0, A, a?
The text was updated successfully, but these errors were encountered:
I propose an addition to the API where you could add a placeholder element to override
the default placeholder character via
formatCharacters
.Current behaviour: all characters are applied the same placeholder character, no matter the pattern.
Proposed behaviour: all symbols get the same placeholder character by default but it can be overwritten when passing in a pattern, like:
Or a separate option after
formatCharacters
so we could also override the placeholdersfor
0
,A
,a
?The text was updated successfully, but these errors were encountered: