We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
autoUnmask
1 parent 621a028 commit 07f82d9Copy full SHA for 07f82d9
src/inputmask.js
@@ -9,6 +9,7 @@ function init(Survey) {
9
numericDigitsOptional: false,
10
numericPrefix: "$",
11
numericPlaceholder: "0",
12
+ autoUnmask: true,
13
widgetIsLoaded: function() {
14
return typeof Inputmask != "undefined";
15
},
@@ -51,7 +52,9 @@ function init(Survey) {
51
52
surveyElement.inputMask != "none"
53
? surveyElement.inputMask
54
: surveyElement.inputFormat;
- var options = {};
55
+ var options = {
56
+ autoUnmask: rootWidget.autoUnmask
57
+ };
58
if (surveyElement.inputMask != "none")
59
options.inputFormat = surveyElement.inputFormat;
60
0 commit comments