Thank you for reporting this bug. We will make it our priority to review this report.
-
Ext JS Premium Member
TextField inputMask
Hi, in documentation of InputMask I found:
Code:
'a': '[a-z]' // any lower case letter a-z
'A': '[A-Z]' // any upper case letter A-Z
But if I try to use 'AAA' pattern, I still can input lowercase letters.
Same thing in reverse case, with 'aaa' pattern, I can input uppercase letters.
Example:
Code:
Ext.create({
fullscreen: true,
xtype: 'formpanel',
items: [{
xtype: 'textfield',
label: 'test',
placeholder: '(xxx) xxx',
inputMask: '(aaa) AAA'
}]
});