diff --git a/chip-list.js b/chip-list.js index d839569..67d5898 100644 --- a/chip-list.js +++ b/chip-list.js @@ -78,7 +78,8 @@ class ChipList extends IgniteElement { documentListener: null, freeForm: true, chipBackground: null, - chipColor: null + chipColor: null, + changed: false, }; } @@ -100,7 +101,11 @@ class ChipList extends IgniteElement { .id(item.id) .property("color", item.chipColor ? item.chipColor : this.chipColor) .property("background", item.chipBackground ? item.chipBackground : this.chipBackground) - .property("onDelete", () => { this.items = this.items.filter(needle => needle != item); }) + .property("onDelete", () => + { + this.items = this.items.filter(needle => needle != item); + this.changed = true; //Make sure changed flag was set. + }) .child(item.content); }), new div() @@ -124,13 +129,19 @@ class ChipList extends IgniteElement { this.items.push({ content: this.input.textContent.trim() }); this.input.innerHTML = ""; this.searching = false; //Reset searching since we just added a item. + this.changed = true; //Make sure changed flag was set. } }) .onBackspace((e) => { //If the backspace key is pressed and there is no content, try to remove the last item from the list. if (this.input.textContent.length == 0 || (this.input.textContent.length == 1 && this.input.textContent[0] == " ")) { e.preventDefault(); - this.items.pop(); + + if (this.items) { + this.items.pop(); + this.changed = true; //Make sure changed flag was set. + } + this.searching = false; } }) @@ -150,6 +161,12 @@ class ChipList extends IgniteElement { if (this.stopEditingOnBlur) { this.editing = false; + + //Fire a change event if there was a change. + if (this.changed) { + this.changed = false; + this.dispatchEvent(new Event("change")); + } } this.input.innerHTML = ""; @@ -215,6 +232,12 @@ class ChipList extends IgniteElement { if (e.target != this && !this.contains(e.target)) { if (this.stopEditingOnBlur) { this.editing = false; + + //Fire a change event if there was a change. + if (this.changed) { + this.changed = false; + this.dispatchEvent(new Event("change")); + } } this.searching = false; this.input.blur(); @@ -228,6 +251,7 @@ class ChipList extends IgniteElement { this.items = []; } + this.changed = true; //Make sure changed flag is set. this.items.push(item); this.searching = false; this.input.innerHTML = "";