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