You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
667 B
20 lines
667 B
define([ |
|
"dojo/_base/declare", |
|
"dojox/data/JsonRestStore", "dojox/data/util/JsonQuery", "dojox/data/ClientFilter", |
|
"dojox/json/query" |
|
], function(declare, JsonRestStore, JsonQuery) { |
|
|
|
// summary: |
|
// this is an extension of JsonRestStore to convert object attribute queries to |
|
// JSONQuery/JSONPath syntax to be sent to the server. This also enables |
|
// SONQuery/JSONPath queries to be performed locally if dojox.data.ClientFilter |
|
// has been loaded |
|
|
|
return declare("dojox.data.JsonQueryRestStore",[JsonRestStore, JsonQuery],{ |
|
matchesQuery: function(item,request){ |
|
return item.__id && (item.__id.indexOf("#") == -1) && this.inherited(arguments); |
|
} |
|
}); |
|
|
|
|
|
});
|
|
|