Changeset 12036

Show
Ignore:
Timestamp:
01/14/08 22:13:52 (12 months ago)
Author:
bill
Message:

Don't depend on dataObject (returned from store.fetch) containing a pointer to the store; That's not part of the dojo.data API. Refs #5544.

Files:
1 modified

Legend:

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

    r11980 r12036  
    565565                                        deep: true 
    566566                                }, 
    567                                 store: this.store, 
    568567                                query: query, 
    569568                                onComplete: dojo.hitch(this, "_openResultList"),  
     
    578577                                //              reader knows which menu option to shout 
    579578                                dataObject.direction = direction; 
    580                                 dataObject.store.fetch(dataObject); 
     579                                this.store.fetch(dataObject); 
    581580                        } 
    582581                        this._nextSearch = this._popupWidget.onPage = dojo.hitch(this, nextSearch, dataObject);