X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=docs%2Fsrc%2FRoo_data_JsonStore.js.html;fp=docs%2Fsrc%2FRoo_data_JsonStore.js.html;h=1efce4e71bc956ade017a0cb53d195e98b695f9d;hb=9ff8ded6bbbd258ecd646184ba26020874e2c085;hp=0000000000000000000000000000000000000000;hpb=2542b67d1a0768025056f2f330bfe50b64d1ad38;p=roojs1 diff --git a/docs/src/Roo_data_JsonStore.js.html b/docs/src/Roo_data_JsonStore.js.html new file mode 100644 index 0000000000..1efce4e71b --- /dev/null +++ b/docs/src/Roo_data_JsonStore.js.html @@ -0,0 +1,36 @@ +/home/alan/gitlive/roojs1/Roo/data/JsonStore.js/* + * Based on: + * Ext JS Library 1.1.1 + * Copyright(c) 2006-2007, Ext JS, LLC. + * + * Originally Released Under LGPL - original licence link has changed is not relivant. + * + * Fork - LGPL + * <script type="text/javascript"> + */ + +/** +/** + * @extends Roo.data.Store + * @class Roo.data.JsonStore + * Small helper class to make creating Stores for JSON data easier. <br/> +<pre><code> +var store = new Roo.data.JsonStore({ + url: 'get-images.php', + root: 'images', + fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}] +}); +</code></pre> + * <b>Note: Although they are not listed, this class inherits all of the config options of Store, + * JsonReader and HttpProxy (unless inline data is provided).</b> + * @cfg {Array} fields An array of field definition objects, or field name strings. + * @constructor + * @param {Object} config + */ +Roo.data.JsonStore = function(c){ + Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, { + proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined, + reader: new Roo.data.JsonReader(c, c.fields) + })); +}; +Roo.extend(Roo.data.JsonStore, Roo.data.Store); \ No newline at end of file