This repository was archived by the owner on Dec 31, 2017. It is now read-only.
This repository was archived by the owner on Dec 31, 2017. It is now read-only.
kwargs definition using declare() to extend from plain function() broken #64
Open
Description
The dojo/store/JsonRest defines __QueryOptions as
__QueryOptions = declare(Store.QueryOptions, __HeaderOptions);
Store.QueryOptions is defined as:
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.
Metadata
Metadata
Assignees
Labels
No labels