dojox.data.PersevereRestStore
dojo.require("dojox.rpc.PersevereRestStore");
defined in dojox/rpc/PersevereRestStore.js
Usage
function ()
parameter | type | description |
---|---|---|
options |
FunctionsBack to top
Defined by dojox.data.JsonRestStore
Checks to see if 'item' has 'value' at 'attribute'
Defined by dojox.data.JsonRestStore
deletes item any references to that item from the store.

Defined by dojox.data.JsonRestStore
console.log("fetch() ", args); fetch takes either a string argument or a keywordArgs object containing the parameters for the search. If passed a string, fetch will interpret this string as the query to be performed and will do so in SYNC_MODE returning the results immediately. If an object is supplied as 'args', its options will be parsed and then contained query executed. query: /* string or object */ Defaults to "". This is basically passed to the XHR request as the URL to get the data start: /* int */ Starting item in result set count: /* int */ Maximum number of items to return cache: /* boolean */ sort: /* function */ Not Implemented yet The following only apply to ASYNC requests (the default) onBegin: /* function */ called before any results are returned. Parameters will be the count and the original fetch request onItem: /*function*/ called for each returned item. Parameters will be the item and the fetch request onComplete: /* function */ called on completion of the request. Parameters will be the complete result set and the request onError: /* function */ colled in the event of an error

Defined by dojox.data.JsonRestStore
fetch an item by its identity. fetch and fetchItemByIdentity work exactly the same
Defined by dojox.data.JsonRestStore
Gets the available attributes of an item's 'property' and returns it as an array.

Overrides dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore
Defined by dojox.data.JsonRestStore
Gets the value of an item's 'property'
Defined by dojox.data.JsonRestStore
Gets the value of an item's 'property' and returns it. If this value is an array it is just returned, if not, the value is added to an array and that is returned.
Defined by dojox.data.JsonRestStore
Checks to see if item has attribute

Defined by dojox.data.JsonRestStore
Defined by dojox.data.JsonRestStore
Checks to see if a passed 'item' is really a JsonRestStore item.
Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore
Loads an item that has not been loaded yet. Lazy loading should happen through getValue, and if used properly, this should never need to be called
Defined by dojox.data.JsonRestStore
adds a new item to the store at the specified point. Takes two parameters, data, and options.

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore
notification of the revert event..not part of the notification api, but probably should be.

Defined by dojox.data.JsonRestStore
notification of the save event..not part of the notification api, but probably should be. console.log("onSave() ", items);

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore
sets 'attribute' on 'item' to 'value'

Defined by dojox.data.JsonRestStore
sets 'attribute' on 'item' to 'value' value must be an array.

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore

Defined by dojox.data.JsonRestStore
adds an item to the list of dirty items. This item contains a reference to the item itself as well as a cloned and trimmed version of old item for use with revert.

Defined by dojox.data.JsonRestStore
PropertiesBack to top
Defined by dojox.data.JsonRestStore
Defined by dojox.data.JsonRestStore
*/ Defaults to 'id'. The name of the attribute that holds an objects id. This can be a preexisting id provided by the server. If an ID isn't already provided when an object is fetched or added to the store, the autoIdentity system will generate an id for it and add it to the index.
Defined by dojox.data.JsonRestStore
Defined by dojox.data.JsonRestStore
Defined by dojox.data.JsonRestStore
Defined by dojox.data.JsonRestStore
Defined by dojox.data.JsonRestStore