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 615d34e commit f50f5caCopy full SHA for f50f5ca
src/select2.js
@@ -100,6 +100,9 @@ function init(Survey, $) {
100
$el.on("select2:select", function (e) {
101
question.value = e.target.value;
102
});
103
+ $el.on("select2:unselecting", function (e) {
104
+ question.value = null;
105
+ });
106
othersEl.onchange = othersElChanged;
107
question.valueChangedCallback = updateValueHandler;
108
question.commentChangedCallback = updateCommentHandler;
0 commit comments