theode
theode

Reputation: 298

I can't find an easy way to access a dGrid Store

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

Answers (1)

dori naji
dori naji

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

Related Questions