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 6e55b60 commit 83e54d2Copy full SHA for 83e54d2
src/inputmask.js
@@ -44,6 +44,10 @@ function init(Survey) {
44
45
Inputmask(mask, options).mask(el);
46
47
+ el.oninput = function() {
48
+ surveyElement.customWidgetData.isNeedRender = true;
49
+ }
50
+
51
var updateHandler = function() {
52
el.value = typeof surveyElement.value === "undefined" ? "" : surveyElement.value;
53
};
0 commit comments