diff --git a/search-select.js b/search-select.js index 6069768..9c95593 100644 --- a/search-select.js +++ b/search-select.js @@ -23,7 +23,9 @@ class SearchSelect extends IgniteElement { searchDelay: 200, searchMaxHeight: "15em", searching: false, - documentListener: null + documentListener: null, + maxResults: -1, + onEnter: null }; } @@ -58,6 +60,24 @@ class SearchSelect extends IgniteElement { .ref(this.inputElement) .onFocus(() => this.onFocus()) .on("keydown", (e) => { + //If the enter key is pressed, prevent it from doing anything. + if (e.key == "Enter") { + e.preventDefault(); + e.stopPropagation(); + + if (this.onEnter) { + this.onEnter(e.target.textContent); + } + + this.searching = false; + this.inputElement.blur(); + this.inputElement.textContent = null; + e.preventDefault(); + e.stopPropagation(); + + return; + } + //If the escape key is pressed stop searching until something else happens. if (e.key == "Escape") { this.searching = false; @@ -132,6 +152,7 @@ class SearchSelect extends IgniteElement { this.searching = false; + //Dispatch native change event so this acts like a native control this.dispatchEvent(new Event("change")); }) ) @@ -216,7 +237,12 @@ class SearchSelect extends IgniteElement { }); } - this.results = results; + //Limit the results if needed + if (this.maxResults != -1) { + this.results = results.slice(0, this.maxResults); + } else { + this.results = results; + } } }