Changeset 14985
- Timestamp:
- 08/28/08 00:19:43 (3 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/form/FilteringSelect.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/form/FilteringSelect.js
r14981 r14985 195 195 this._lastDisplayedValue = label; 196 196 var _this = this; 197 this.store.fetch({197 var fetch = { 198 198 query: query, 199 199 queryOptions: { … … 208 208 dojo.hitch(_this, "_setValue")("", label, false); 209 209 } 210 }); 210 }; 211 dojo.mixin(fetch, this.fetchProperties); 212 this.store.fetch(fetch); 211 213 } 212 214 },