I am currently implementing a frontend based on the Dojo Toolkit (1.6.1) receiving a lot of data from RESTful services. This is represented in the GUI by the dojox.grid.DataGrid using a dojo.store.JsonRest-store.
There are however operations used on the grid I do not wish to send a JSON request for, such as sorting a column. Is is possible to allow the user to sort the data without such a request? Can I cache the store information locally (e.g. user browser or in a file) to avoid this?
Any feedback you might have is very appreciated!
I facded the same issue and first tried
dojo.store.cache, but this is not working.Hence I created my own cache usind a
dojo.store.memory: