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

disable focus-via-tab when disabled. fixes #614

This commit is contained in:
Igor Vaynberg 2013-02-05 14:50:06 -08:00
parent cc74978455
commit df2aaa0cfc

View File

@ -1477,6 +1477,31 @@ the specific language governing permissions and limitations under the Apache Lic
return container;
},
// single
disable: function() {
if (!this.enabled) return;
this.parent.disable.apply(this, arguments);
this.selection.attr("tabIndex", "-1");
this.search.attr("tabIndex", "-1");
},
// single
enable: function() {
if (this.enabled) return;
this.parent.enable.apply(this, arguments);
if (this.elementTabIndex) {
this.selection.attr("tabIndex", this.elementTabIndex)
} else {
this.selection.removeAttr("tabIndex");
}
this.search.removeAttr("tabIndex");
},
// single
opening: function () {
this.search.show();
@ -1604,6 +1629,8 @@ the specific language governing permissions and limitations under the Apache Lic
dropdown.bind("mousedown", this.bind(function() { this.search.focus(); }));
selection.bind("focus", this.bind(function() {
if (!this.enabled) return;
this.container.addClass("select2-container-active");
// hide the search so the tab key does not focus on it
this.search.attr("tabIndex", "-1");