I noticed that the user needs to start at the first position in order to fully enter the value. Example: Phone Number input $(“#numericInput”).jqxMaskedInput({ width: ‘250px’, height: ’25px’, mask: ‘(###)###-####’});
Textbox contains (___)___-____ if the user click on position greater than 1 then enters data the data starts at that point (___)___-_123 instead of sliding it left to the first number. (123)___-____
Is there a way to either force the users to start entry at position 1 or first available position?
Thanks