diff --git a/src/typeahead/plugin.js b/src/typeahead/plugin.js index ff32b1c972..59b77e7468 100644 --- a/src/typeahead/plugin.js +++ b/src/typeahead/plugin.js @@ -175,6 +175,24 @@ return query; } + else { + // Sets the query in 'silent' mode so that it doesn't fire + // an autocomplete request. + ttEach(this, function(t) { t.setVal(_.toStr(newVal), true); }); + return this; + } + }, + + // Same thing as the 'val' method, except it allows events to + // be triggered that execute autocomplete requests (namely, queryChanged). + query: function query(newVal) { + var query; + + if (!arguments.length) { + ttEach(this.first(), function(t) { query = t.getVal(); }); + return query; + } + else { ttEach(this, function(t) { t.setVal(_.toStr(newVal)); }); return this; diff --git a/src/typeahead/typeahead.js b/src/typeahead/typeahead.js index fe40ffc1b5..49a0499a6d 100644 --- a/src/typeahead/typeahead.js +++ b/src/typeahead/typeahead.js @@ -351,9 +351,12 @@ var Typeahead = (function() { return !this.isOpen(); }, - setVal: function setVal(val) { + setVal: function setVal(val, silent) { + if(silent){ + this.menu.empty(); + } // expect val to be a string, so be safe, and coerce - this.input.setQuery(_.toStr(val)); + this.input.setQuery(_.toStr(val), silent); }, getVal: function getVal() { diff --git a/test/typeahead/plugin_spec.js b/test/typeahead/plugin_spec.js index e32f6923f2..45684507b8 100644 --- a/test/typeahead/plugin_spec.js +++ b/test/typeahead/plugin_spec.js @@ -78,7 +78,7 @@ describe('$plugin', function() { // activate and set val to render some selectables this.$input.typeahead('activate'); - this.$input.typeahead('val', 'o'); + this.$input.typeahead('query', 'o'); $el = $('.tt-selectable').first(); expect(this.$input.typeahead('select', $el)).toBe(true); @@ -90,7 +90,7 @@ describe('$plugin', function() { // activate and set val to render some selectables this.$input.typeahead('activate'); - this.$input.typeahead('val', 'o'); + this.$input.typeahead('query', 'o'); body = document.body; expect(this.$input.typeahead('select', body)).toBe(false); @@ -101,7 +101,7 @@ describe('$plugin', function() { // activate and set val to render some selectables this.$input.typeahead('activate'); - this.$input.typeahead('val', 'o'); + this.$input.typeahead('query', 'o'); $el = $('.tt-selectable').first(); expect(this.$input.typeahead('autocomplete', $el)).toBe(true); @@ -113,7 +113,7 @@ describe('$plugin', function() { // activate and set val to render some selectables this.$input.typeahead('activate'); - this.$input.typeahead('val', 'o'); + this.$input.typeahead('query', 'o'); body = document.body; expect(this.$input.typeahead('autocomplete', body)).toBe(false); @@ -124,7 +124,7 @@ describe('$plugin', function() { // activate and set val to render some selectables this.$input.typeahead('activate'); - this.$input.typeahead('val', 'o'); + this.$input.typeahead('query', 'o'); $el = $('.tt-selectable').first(); expect($el).not.toHaveClass('tt-cursor'); @@ -137,7 +137,7 @@ describe('$plugin', function() { // activate and set val to render some selectables this.$input.typeahead('activate'); - this.$input.typeahead('val', 'o'); + this.$input.typeahead('query', 'o'); body = document.body; expect(this.$input.typeahead('select', body)).toBe(false); @@ -150,11 +150,13 @@ describe('$plugin', function() { $els = this.$input.add('