From ad21d01693fc66469c2ee8a76f56cd8f1ef01ac8 Mon Sep 17 00:00:00 2001 From: Lee Boynton Date: Fri, 28 Mar 2014 14:46:41 +0000 Subject: [PATCH 1/3] Check if search input should be focussed when opening --- select2.js | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/select2.js b/select2.js index ea5c902b..ffe6b64b 100644 --- a/select2.js +++ b/select2.js @@ -1915,17 +1915,19 @@ the specific language governing permissions and limitations under the Apache Lic this.search.val(this.focusser.val()); } - this.search.focus(); - // move the cursor to the end after focussing, otherwise it will be at the beginning and - // new text will appear *before* focusser.val() - el = this.search.get(0); - if (el.createTextRange) { - range = el.createTextRange(); - range.collapse(false); - range.select(); - } else if (el.setSelectionRange) { - len = this.search.val().length; - el.setSelectionRange(len, len); + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + // move the cursor to the end after focussing, otherwise it will be at the beginning and + // new text will appear *before* focusser.val() + el = this.search.get(0); + if (el.createTextRange) { + range = el.createTextRange(); + range.collapse(false); + range.select(); + } else if (el.setSelectionRange) { + len = this.search.val().length; + el.setSelectionRange(len, len); + } } // initializes search's value with nextSearchTerm (if defined by user) From ed0bae39c9c41c2d398e0ecd14e5771eda2dbea2 Mon Sep 17 00:00:00 2001 From: Lee Boynton Date: Fri, 28 Mar 2014 14:56:45 +0000 Subject: [PATCH 2/3] Check if search should be focused when the dropdown is activated --- select2.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/select2.js b/select2.js index ffe6b64b..c3a33664 100644 --- a/select2.js +++ b/select2.js @@ -2144,7 +2144,11 @@ the specific language governing permissions and limitations under the Apache Lic killEvent(e); })); - dropdown.on("mousedown touchstart", this.bind(function() { this.search.focus(); })); + dropdown.on("mousedown touchstart", this.bind(function() { + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + } + })); selection.on("focus", this.bind(function(e) { killEvent(e); From 2d6b74c2acbcec9889029db4997157952653e4af Mon Sep 17 00:00:00 2001 From: Lee Boynton Date: Mon, 31 Mar 2014 21:01:06 +0100 Subject: [PATCH 3/3] Also check if search input should be focussed for multiselects --- select2.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/select2.js b/select2.js index c3a33664..943626b5 100644 --- a/select2.js +++ b/select2.js @@ -2827,7 +2827,9 @@ the specific language governing permissions and limitations under the Apache Lic } this.updateResults(true); - this.search.focus(); + if (this.opts.shouldFocusInput(this)) { + this.search.focus(); + } this.opts.element.trigger($.Event("select2-open")); },