With the following widget definition :
$(‘#jqxMaskedInput’).jqxMaskedInput({mask: ‘[a-Z][a-Z][a-Z][a-Z][0-9][0-9][0-9][0-9]’});
Actual result : ‘ABCD1234’, ‘abcd1234’, ‘AbCd1234’ … are authorized
Expected result : ‘ABCD1234’ is the only one authorized.
In add, I try to use this http://www.jqwidgets.com/community/topic/issue-with-jqxmaskedinput/
$(‘#jqxMaskedInput’).jqxMaskedInput({mask: ‘########’});
for (i = 0; i < 4; i++) $(‘#jqxMaskedInput’).jqxMaskedInput(‘setRegex’, i, ‘(\b[A-Z])’);
for (i = 4; i < 8; i++) $(‘#jqxMaskedInput’).jqxMaskedInput(‘setRegex’, i, ‘(\b[0-9])’);
But I have the same result.
Would you please explain how to solve this problem ?