I don't see anything in the read API that provides access to this: http://api.dojotoolkit.org/jsdoc/1.3.2/dojo.data.api.Read
|
|
The format of the wire-data of any data store is completely store-specific. In order for you to get the total items count (and other metadata), it must be returned as part of the response. This is the only way to do server-side pagination. All the stores I have implemented expect the data to contain a
The store saves this when the query returns (in When used in conjunction with the Since this is not part of the API, the core implementations of the read API do not implement it. A form of this technique (similar to what I have done) does seem to be implemented by the |
|||
|
|
|
An example at dojocampus demonstrates one way. Here a
|
|||
|
|
|
dojo.data.api.Read's onBegin function has the total size of the match:
From this quickstart: http://dojotoolkit.org/reference-guide/1.7/quickstart/data/usingdatastores/faq.html#question-6-how-do-i-get-a-count-of-all-items-in-a-datastore |
|||
|
|
|
I was looking for the answer to this question using the JsonRest store, and this seems to be it:
From: http://dojotoolkit.org/reference-guide/dojo/store/JsonRest.html |
|||
|
|
|
The following code worked for me
|
||||
|
|