Is there a way to retrieve all the values of a specific field from a store without manually selecting each cell?
In my grid, I am looking to extract all the values from a particular column directly from the store. Is this achievable without any manual selection?
Can I directly access all the values associated with a specific field in the store?
var someStore = new dojo.data.ItemFileWriteStore({data : result});
dijit.byId('gridId').setStore(someStore);
dijit.byId('gridId').startup();
I attempted using fetch and dojox.json.query methods, but unfortunately, neither produced the desired results.