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.
1 parent 7899bd8 commit 7856f75Copy full SHA for 7856f75
src/inputmask.js
@@ -28,7 +28,11 @@ function init(Survey) {
28
{
29
name: "prefix",
30
category: "general",
31
-
+ visible: false,
32
+ },
33
+ {
34
+ name: "suffix",
35
+ category: "general",
36
visible: false,
37
},
38
@@ -93,6 +97,7 @@ function init(Survey) {
93
97
options.digits = rootWidget.numericDigits;
94
98
options.digitsOptional = rootWidget.numericDigitsOptional;
95
99
options.prefix = surveyElement.prefix || "";
100
+ options.suffix = surveyElement.suffix || "";
96
101
options.placeholder = rootWidget.numericPlaceholder;
102
}
103
// if (surveyElement.inputMask == "datetime") {
0 commit comments