Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / source / data / JsonStore.js
diff --git a/source/data/JsonStore.js b/source/data/JsonStore.js
deleted file mode 100644 (file)
index e861dbc..0000000
+++ /dev/null
@@ -1,57 +0,0 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
-/**\r
- * @class Ext.data.JsonStore\r
- * @extends Ext.data.Store\r
- * Small helper class to make creating Stores for remotely-loaded JSON data easier. JsonStore is pre-configured\r
- * with a built-in {@link Ext.data.HttpProxy} and {@link Ext.data.JsonReader}.  If you require some other proxy/reader\r
- * combination then you'll have to create a basic {@link Ext.data.Store} configured as needed.<br/>\r
-<pre><code>\r
-var store = new Ext.data.JsonStore({\r
-    url: 'get-images.php',\r
-    root: 'images',\r
-    fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]\r
-});\r
-</code></pre>\r
- * This would consume a returned object of the form:\r
-<pre><code>\r
-{\r
-    images: [\r
-        {name: 'Image one', url:'/GetImage.php?id=1', size:46.5, lastmod: new Date(2007, 10, 29)},\r
-        {name: 'Image Two', url:'/GetImage.php?id=2', size:43.2, lastmod: new Date(2007, 10, 30)}\r
-    ]\r
-}\r
-</code></pre>\r
- * An object literal of this form could also be used as the {@link #data} config option.\r
- * <b>Note: Although they are not listed, this class inherits all of the config options of Store,\r
- * JsonReader.</b>\r
- * @cfg {String} url  The URL from which to load data through an HttpProxy. Either this\r
- * option, or the {@link #data} option must be specified.\r
- * @cfg {Object} data  A data object readable by this object's JsonReader. Either this\r
- * option, or the {@link #url} option must be specified.\r
- * @cfg {Array} fields  Either an Array of field definition objects as passed to\r
- * {@link Ext.data.Record#create}, or a {@link Ext.data.Record Record} constructor created using {@link Ext.data.Record#create}.<br>\r
- * <p>This config is used to create the <tt>recordType</tt> parameter to the {@link Ext.data.JsonReader#JsonReader JsonReader}\r
- * constructor that is implicitly called, and creates the {@link Ext.data.Record Record definition} used by the Store.\r
- * @constructor\r
- * @param {Object} config\r
- */\r
-Ext.data.JsonStore = function(c){\r
-    /**\r
-     * @cfg {Ext.data.DataReader} reader @hide\r
-     */\r
-    /**\r
-     * @cfg {Ext.data.DataProxy} proxy @hide\r
-     */\r
-    Ext.data.JsonStore.superclass.constructor.call(this, Ext.apply(c, {\r
-        proxy: c.proxy || (!c.data ? new Ext.data.HttpProxy({url: c.url}) : undefined),\r
-        reader: new Ext.data.JsonReader(c, c.fields)\r
-    }));\r
-};\r
-Ext.extend(Ext.data.JsonStore, Ext.data.Store);
\ No newline at end of file