1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Merge pull request #2003 from jdecuyper/feature-next-search-term-multiple

Enable nextSearchTerm function for multiple select
This commit is contained in:
Igor Vaynberg 2014-01-02 19:16:36 -08:00
commit a44cf9fef6

View File

@ -2722,6 +2722,15 @@ the specific language governing permissions and limitations under the Apache Lic
this.focusSearch();
// initializes search's value with nextSearchTerm (if defined by user)
// ignore nextSearchTerm if the dropdown is opened by the user pressing a letter
if(this.search.val() === "") {
if(this.nextSearchTerm != undefined){
this.search.val(this.nextSearchTerm);
this.search.select();
}
}
this.updateResults(true);
this.search.focus();
this.opts.element.trigger($.Event("select2-open"));
@ -2786,6 +2795,9 @@ the specific language governing permissions and limitations under the Apache Lic
this.opts.element.trigger({ type: "selected", val: this.id(data), choice: data });
// keep track of the search's value before it gets cleared
this.nextSearchTerm = this.opts.nextSearchTerm(data, this.search.val());
this.clearSearch();
this.updateResults();
@ -2802,6 +2814,13 @@ the specific language governing permissions and limitations under the Apache Lic
// if we reached max selection size repaint the results so choices
// are replaced with the max selection reached message
this.updateResults(true);
} else {
// initializes search's value with nextSearchTerm and update search result
if(this.nextSearchTerm != undefined){
this.search.val(this.nextSearchTerm);
this.updateResults();
this.search.select();
}
}
this.positionDropdown();
} else {