Reputation: 298
I have an App from a former Programmer. This guy was using dojo, djox and dGrid.
As I only have the task to write a simple export from the dojo or dGrid I am searching for an easy way to access the dGrid's Store. As far as I understand the store holds all the information how the Grid is ordered in a particulary moment.
Search for something like dGridStore.retrieveAll.
Another cool solution for this problem might be finding a physical json of the current state.
Upvotes: 0
Views: 108
Reputation: 980
if you can access the store you can simply do the following.
var gridList= store.query();
console.log(JSON.stringify(gridList));
if you can show me more code i can help you more.
Upvotes: 1