Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / app / nested-loading / app / store / Books.js
diff --git a/examples/app/nested-loading/app/store/Books.js b/examples/app/nested-loading/app/store/Books.js
new file mode 100644 (file)
index 0000000..6dd7314
--- /dev/null
@@ -0,0 +1,13 @@
+/**
+ * The store used for books
+ */
+Ext.define('Books.store.Books', {
+    extend: 'Ext.data.Store',
+    model: 'Books.model.Book',
+    
+    autoLoad: true,
+    proxy: {
+        type: 'ajax',
+        url : 'resources/json/products.json'
+    }
+});
\ No newline at end of file