DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Access Raw Data Stored In An Ext.data.Store
// Access the underlying data in an Ext.data.Store which was parsed by an Ext.data.(something)Reader (e.g. Ext.data.XmlReader)
var ds = Ext.data.Store({ ...config options here ...});
var rawData = ds.reader.xmlData;





