You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 31, 2017. It is now read-only.
Store.QueryOptions=function(sort,start,count){// summary:// Optional object with additional parameters for query results.// sort: Store.SortInformation[]?// A list of attributes to sort on, as well as direction// For example:// | [{attribute:"price, descending: true}].// If the sort parameter is omitted, then the natural order of the store may be// applied if there is a natural order.// start: Number?// The first result to begin iteration on// count: Number?// The number of how many results should be returned.this.sort=sort;this.start=start;this.count=count;};
The properties from the superclass Store.QueryOptions don't make it into __QueryOptions.
The text was updated successfully, but these errors were encountered:
The dojo/store/JsonRest defines __QueryOptions as
Store.QueryOptions is defined as:
The properties from the superclass Store.QueryOptions don't make it into __QueryOptions.
The text was updated successfully, but these errors were encountered: