Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / StoreMgr.html
1 <html>\r
2 <head>\r
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
4   <title>The source code</title>\r
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js"><div id="cls-Ext.StoreMgr"></div>/**
10  * @class Ext.StoreMgr
11  * @extends Ext.util.MixedCollection
12  * The default global group of stores.
13  * @singleton
14  */
15 Ext.StoreMgr = Ext.apply(new Ext.util.MixedCollection(), {
16     <div id="cfg-Ext.StoreMgr-listeners"></div>/**
17      * @cfg {Object} listeners @hide
18      */
19
20     <div id="method-Ext.StoreMgr-register"></div>/**
21      * Registers one or more Stores with the StoreMgr. You do not normally need to register stores
22      * manually.  Any store initialized with a {@link Ext.data.Store#storeId} will be auto-registered. 
23      * @param {Ext.data.Store} store1 A Store instance
24      * @param {Ext.data.Store} store2 (optional)
25      * @param {Ext.data.Store} etc... (optional)
26      */
27     register : function(){
28         for(var i = 0, s; (s = arguments[i]); i++){
29             this.add(s);
30         }
31     },
32
33     <div id="method-Ext.StoreMgr-unregister"></div>/**
34      * Unregisters one or more Stores with the StoreMgr
35      * @param {String/Object} id1 The id of the Store, or a Store instance
36      * @param {String/Object} id2 (optional)
37      * @param {String/Object} etc... (optional)
38      */
39     unregister : function(){
40         for(var i = 0, s; (s = arguments[i]); i++){
41             this.remove(this.lookup(s));
42         }
43     },
44
45     <div id="method-Ext.StoreMgr-lookup"></div>/**
46      * Gets a registered Store by id
47      * @param {String/Object} id The id of the Store, or a Store instance
48      * @return {Ext.data.Store}
49      */
50     lookup : function(id){
51         if(Ext.isArray(id)){
52             var fields = ['field1'], expand = !Ext.isArray(id[0]);
53             if(!expand){
54                 for(var i = 2, len = id[0].length; i <= len; ++i){
55                     fields.push('field' + i);
56                 }
57             }
58             return new Ext.data.ArrayStore({
59                 fields: fields,
60                 data: id,
61                 expandData: expand,
62                 autoDestroy: true,
63                 autoCreated: true
64
65             });
66         }
67         return Ext.isObject(id) ? (id.events ? id : Ext.create(id, 'store')) : this.get(id);
68     },
69
70     // getKey implementation for MixedCollection
71     getKey : function(o){
72          return o.storeId;
73     }
74 });</pre>    \r
75 </body>\r
76 </html>