X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/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 index 00000000..6dd73144 --- /dev/null +++ b/examples/app/nested-loading/app/store/Books.js @@ -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