Changeset 13113
- Timestamp:
- 03/17/08 05:32:07 (10 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/form/ComboBox.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/form/ComboBox.js
r13102 r13113 111 111 } 112 112 var doSearch = false; 113 this.item = null; // #4872114 113 var pw = this._popupWidget; 115 114 var dk = dojo.keys; … … 491 490 // create a new query to prevent accidentally querying for a hidden 492 491 // value from FilteringSelect's keyField 492 this.item = null; // #4872 493 493 var query = dojo.clone(this.query); // #5970 494 494 this._lastQuery = query[this.searchAttr] = this._getQueryString(key); … … 624 624 parent: this 625 625 }); 626 }, 627 628 reset:function(){ 629 // summary: 630 // Additionally reset the .item (to clean up). 631 this.item = null; 632 this.inherited(arguments); 626 633 } 634 627 635 } 628 636 );