X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/JsonStore.html diff --git a/docs/source/JsonStore.html b/docs/source/JsonStore.html index 08f131f6..f5d32b5c 100644 --- a/docs/source/JsonStore.html +++ b/docs/source/JsonStore.html @@ -1,11 +1,17 @@ - - - The source code - - - - -
/** + + + The source code + + + + +
/*!
+ * Ext JS Library 3.0.3
+ * Copyright(c) 2006-2009 Ext JS, LLC
+ * licensing@extjs.com
+ * http://www.extjs.com/license
+ */
+
/** * @class Ext.data.JsonStore * @extends Ext.data.Store *

Small helper class to make creating {@link Ext.data.Store}s from JSON data easier. @@ -18,7 +24,7 @@ var store = new Ext.data.JsonStore({ storeId: 'myStore', // reader configs root: 'images', - idProperty: 'name', + idProperty: 'name', fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}] }); *

@@ -31,7 +37,7 @@ var store = new Ext.data.JsonStore({ } *
* An object literal of this form could also be used as the {@link #data} config option.

- *

*Note: Although not listed here, this class accepts all of the configuration options of + *

*Note: Although not listed here, this class accepts all of the configuration options of * {@link Ext.data.JsonReader JsonReader}.

* @constructor * @param {Object} config @@ -47,6 +53,6 @@ Ext.data.JsonStore = Ext.extend(Ext.data.Store, { })); } }); -Ext.reg('jsonstore', Ext.data.JsonStore); - +Ext.reg('jsonstore', Ext.data.JsonStore); + \ No newline at end of file