Removing timeout from keyup, causing issues with value.

This commit is contained in:
MattMo 2021-05-11 22:32:46 -07:00
parent 1dae4ecece
commit 67b4bd60a0

View File

@ -176,13 +176,7 @@ class IgniteTemplate {
this._callbacks.push(value.attachOnSplice((list, start, deleteCount, items) => this.onValueChanged((converter != null ? converter(list) : null))));
if (reflect != null && ((typeof (reflect) == "boolean" && reflect == true) || reflect instanceof Function)) {
var keyUpDelay = null;
var valueChanged = () => {
if (keyUpDelay) {
clearTimeout(keyUpDelay);
keyUpDelay = null;
}
var newValue = null;
var type = this.element.hasAttribute("type") ? this.element.getAttribute("type").toLowerCase().trim() : null;
@ -209,11 +203,7 @@ class IgniteTemplate {
};
this.on("change", valueChanged);
this.on("keyup", () => {
if (!keyUpDelay) {
keyUpDelay = setTimeout(valueChanged, 300);
}
});
this.on("keyup", valueChanged);
}
this._elementValue = (converter != null ? converter(value.value) : value.value);