Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / app / nested-loading / app / store / Books.js
1 /**
2  * The store used for books
3  */
4 Ext.define('Books.store.Books', {
5     extend: 'Ext.data.Store',
6     model: 'Books.model.Book',
7     
8     autoLoad: true,
9     proxy: {
10         type: 'ajax',
11         url : 'resources/json/products.json'
12     }
13 });