How do I get all the values of a particular field from a store?
I have a grid and i want to fetch all the values of a particular column without clicking any cell, is it possible?
Can i fetch all the values directly from the store for a particular field?
var someStore = new dojo.data.ItemFileWriteStore({data : result});
dijit.byId('gridId').setStore(someStore);
dijit.byId('gridId').startup();
I tried fetch and dojox.json.query, both doesnt work.