Changeset 14985

Show
Ignore:
Timestamp:
08/28/08 00:19:43 (3 months ago)
Author:
bill
Message:

Mixin fetchProperties for fetch() call in _setDisplayedValueAttr().
Fixes #7495 !strict.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/form/FilteringSelect.js

    r14981 r14985  
    195195                                this._lastDisplayedValue = label; 
    196196                                var _this = this; 
    197                                 this.store.fetch({ 
     197                                var fetch = { 
    198198                                        query: query,  
    199199                                        queryOptions: { 
     
    208208                                                dojo.hitch(_this, "_setValue")("", label, false); 
    209209                                        } 
    210                                 }); 
     210                                }; 
     211                                dojo.mixin(fetch, this.fetchProperties); 
     212                                this.store.fetch(fetch); 
    211213                        } 
    212214                },