Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.ZIndexManager.js
1 Ext.data.JsonP.Ext_ZIndexManager({
2   "allMixins": [
3
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9
10     ],
11     "method": [
12       {
13         "deprecated": null,
14         "alias": null,
15         "protected": false,
16         "tagname": "method",
17         "href": "Base3.html#Ext-Base-method-addStatics",
18         "shortDoc": "Add / override static properties of this class. ...",
19         "static": true,
20         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
21         "private": false,
22         "params": [
23           {
24             "type": "Object",
25             "optional": false,
26             "doc": "\n",
27             "name": "members"
28           }
29         ],
30         "name": "addStatics",
31         "owner": "Ext.Base",
32         "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
33         "linenr": 388,
34         "return": {
35           "type": "Ext.Base",
36           "doc": "<p>this</p>\n"
37         },
38         "html_filename": "Base3.html"
39       },
40       {
41         "deprecated": null,
42         "alias": null,
43         "protected": false,
44         "tagname": "method",
45         "href": "ZIndexManager.html#Ext-ZIndexManager-method-bringToFront",
46         "shortDoc": "Brings the specified Component to the front of any other active Components in this ZIndexManager. ...",
47         "static": false,
48         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
49         "private": false,
50         "params": [
51           {
52             "type": "String/Object",
53             "optional": false,
54             "doc": "<p>The id of the Component or a <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> instance</p>\n",
55             "name": "comp"
56           }
57         ],
58         "name": "bringToFront",
59         "owner": "Ext.ZIndexManager",
60         "doc": "<p>Brings the specified Component to the front of any other active Components in this ZIndexManager.</p>\n",
61         "linenr": 222,
62         "return": {
63           "type": "Boolean",
64           "doc": "<p>True if the dialog was brought to the front, else false\nif it was already in front</p>\n"
65         },
66         "html_filename": "ZIndexManager.html"
67       },
68       {
69         "deprecated": null,
70         "alias": null,
71         "protected": false,
72         "tagname": "method",
73         "href": "Base3.html#Ext-Base-method-callOverridden",
74         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
75         "static": false,
76         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
77         "private": false,
78         "params": [
79           {
80             "type": "Array/Arguments",
81             "optional": false,
82             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
83             "name": "args"
84           }
85         ],
86         "name": "callOverridden",
87         "owner": "Ext.Base",
88         "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
89         "linenr": 269,
90         "return": {
91           "type": "Mixed",
92           "doc": "<p>Returns the result after calling the overridden method</p>\n"
93         },
94         "html_filename": "Base3.html"
95       },
96       {
97         "deprecated": null,
98         "alias": null,
99         "protected": true,
100         "tagname": "method",
101         "href": "Base3.html#Ext-Base-method-callParent",
102         "shortDoc": "Call the parent's overridden method. ...",
103         "static": false,
104         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
105         "private": false,
106         "params": [
107           {
108             "type": "Array/Arguments",
109             "optional": false,
110             "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
111             "name": "args"
112           }
113         ],
114         "name": "callParent",
115         "owner": "Ext.Base",
116         "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
117         "linenr": 124,
118         "return": {
119           "type": "Mixed",
120           "doc": "<p>Returns the result from the superclass' method</p>\n"
121         },
122         "html_filename": "Base3.html"
123       },
124       {
125         "deprecated": null,
126         "alias": null,
127         "protected": false,
128         "tagname": "method",
129         "href": "Base3.html#Ext-Base-method-create",
130         "shortDoc": "Create a new instance of this Class. ...",
131         "static": true,
132         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
133         "private": false,
134         "params": [
135
136         ],
137         "name": "create",
138         "owner": "Ext.Base",
139         "doc": "<p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n",
140         "linenr": 329,
141         "return": {
142           "type": "Object",
143           "doc": "<p>the created instance.</p>\n"
144         },
145         "html_filename": "Base3.html"
146       },
147       {
148         "deprecated": null,
149         "alias": null,
150         "protected": false,
151         "tagname": "method",
152         "href": "Base3.html#Ext-Base-method-createAlias",
153         "shortDoc": "Create aliases for existing prototype methods. ...",
154         "static": true,
155         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
156         "private": false,
157         "params": [
158           {
159             "type": "String/Object",
160             "optional": false,
161             "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
162             "name": "alias"
163           },
164           {
165             "type": "String/Object",
166             "optional": false,
167             "doc": "<p>The original method name</p>\n",
168             "name": "origin"
169           }
170         ],
171         "name": "createAlias",
172         "owner": "Ext.Base",
173         "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
174         "linenr": 648,
175         "return": {
176           "type": "void",
177           "doc": "\n"
178         },
179         "html_filename": "Base3.html"
180       },
181       {
182         "deprecated": null,
183         "alias": null,
184         "protected": false,
185         "tagname": "method",
186         "href": "ZIndexManager.html#Ext-ZIndexManager-method-each",
187         "shortDoc": "Executes the specified function once for every Component in this ZIndexManager, passing each\nComponent as the only pa...",
188         "static": false,
189         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
190         "private": false,
191         "params": [
192           {
193             "type": "Function",
194             "optional": false,
195             "doc": "<p>The function to execute for each item</p>\n",
196             "name": "fn"
197           },
198           {
199             "type": "Object",
200             "optional": true,
201             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the current Component in the iteration.</p>\n",
202             "name": "scope"
203           }
204         ],
205         "name": "each",
206         "owner": "Ext.ZIndexManager",
207         "doc": "<p>Executes the specified function once for every Component in this ZIndexManager, passing each\nComponent as the only parameter. Returning false from the function will stop the iteration.</p>\n",
208         "linenr": 342,
209         "return": {
210           "type": "void",
211           "doc": "\n"
212         },
213         "html_filename": "ZIndexManager.html"
214       },
215       {
216         "deprecated": null,
217         "alias": null,
218         "protected": false,
219         "tagname": "method",
220         "href": "ZIndexManager.html#Ext-ZIndexManager-method-eachBottomUp",
221         "shortDoc": "Executes the specified function once for every Component in this ZIndexManager, passing each\nComponent as the only pa...",
222         "static": false,
223         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
224         "private": false,
225         "params": [
226           {
227             "type": "Function",
228             "optional": false,
229             "doc": "<p>The function to execute for each item</p>\n",
230             "name": "fn"
231           },
232           {
233             "type": "Object",
234             "optional": true,
235             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function\nis executed. Defaults to the current Component in the iteration.</p>\n",
236             "name": "scope"
237           }
238         ],
239         "name": "eachBottomUp",
240         "owner": "Ext.ZIndexManager",
241         "doc": "<p>Executes the specified function once for every Component in this ZIndexManager, passing each\nComponent as the only parameter. Returning false from the function will stop the iteration.\nThe components are passed to the function starting at the bottom and proceeding to the top.</p>\n",
242         "linenr": 358,
243         "return": {
244           "type": "void",
245           "doc": "\n"
246         },
247         "html_filename": "ZIndexManager.html"
248       },
249       {
250         "deprecated": null,
251         "alias": null,
252         "protected": false,
253         "tagname": "method",
254         "href": "ZIndexManager.html#Ext-ZIndexManager-method-eachTopDown",
255         "shortDoc": "Executes the specified function once for every Component in this ZIndexManager, passing each\nComponent as the only pa...",
256         "static": false,
257         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
258         "private": false,
259         "params": [
260           {
261             "type": "Function",
262             "optional": false,
263             "doc": "<p>The function to execute for each item</p>\n",
264             "name": "fn"
265           },
266           {
267             "type": "Object",
268             "optional": true,
269             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function\nis executed. Defaults to the current Component in the iteration.</p>\n",
270             "name": "scope"
271           }
272         ],
273         "name": "eachTopDown",
274         "owner": "Ext.ZIndexManager",
275         "doc": "<p>Executes the specified function once for every Component in this ZIndexManager, passing each\nComponent as the only parameter. Returning false from the function will stop the iteration.\nThe components are passed to the function starting at the top and proceeding to the bottom.</p>\n",
276         "linenr": 379,
277         "return": {
278           "type": "void",
279           "doc": "\n"
280         },
281         "html_filename": "ZIndexManager.html"
282       },
283       {
284         "deprecated": null,
285         "alias": null,
286         "protected": false,
287         "tagname": "method",
288         "href": "ZIndexManager.html#Ext-ZIndexManager-method-get",
289         "shortDoc": "Gets a registered Component by id. ...",
290         "static": false,
291         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
292         "private": false,
293         "params": [
294           {
295             "type": "String/Object",
296             "optional": false,
297             "doc": "<p>The id of the Component or a <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> instance</p>\n",
298             "name": "id"
299           }
300         ],
301         "name": "get",
302         "owner": "Ext.ZIndexManager",
303         "doc": "<p>Gets a registered Component by id.</p>\n",
304         "linenr": 213,
305         "return": {
306           "type": "Ext.Component",
307           "doc": "\n"
308         },
309         "html_filename": "ZIndexManager.html"
310       },
311       {
312         "deprecated": null,
313         "alias": null,
314         "protected": false,
315         "tagname": "method",
316         "href": "ZIndexManager.html#Ext-ZIndexManager-method-getActive",
317         "shortDoc": "Gets the currently-active Component in this ZIndexManager. ...",
318         "static": false,
319         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
320         "private": false,
321         "params": [
322
323         ],
324         "name": "getActive",
325         "owner": "Ext.ZIndexManager",
326         "doc": "<p>Gets the currently-active Component in this ZIndexManager.</p>\n",
327         "linenr": 310,
328         "return": {
329           "type": "Ext.Component",
330           "doc": "<p>The active Component</p>\n"
331         },
332         "html_filename": "ZIndexManager.html"
333       },
334       {
335         "deprecated": null,
336         "alias": null,
337         "protected": false,
338         "tagname": "method",
339         "href": "ZIndexManager.html#Ext-ZIndexManager-method-getBy",
340         "shortDoc": "Returns zero or more Components in this ZIndexManager using the custom search function passed to this method. ...",
341         "static": false,
342         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
343         "private": false,
344         "params": [
345           {
346             "type": "Function",
347             "optional": false,
348             "doc": "<p>The search function</p>\n",
349             "name": "fn"
350           },
351           {
352             "type": "Object",
353             "optional": true,
354             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Component being tested.\nthat gets passed to the function if not specified)</p>\n",
355             "name": "scope"
356           }
357         ],
358         "name": "getBy",
359         "owner": "Ext.ZIndexManager",
360         "doc": "<p>Returns zero or more Components in this ZIndexManager using the custom search function passed to this method.\nThe function should accept a single <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> reference as its only argument and should\nreturn true if the Component matches the search criteria, otherwise it should return false.</p>\n",
361         "linenr": 318,
362         "return": {
363           "type": "Array",
364           "doc": "<p>An array of zero or more matching windows</p>\n"
365         },
366         "html_filename": "ZIndexManager.html"
367       },
368       {
369         "deprecated": null,
370         "alias": null,
371         "protected": false,
372         "tagname": "method",
373         "href": "Base3.html#Ext-Base-method-getName",
374         "shortDoc": "Get the current class' name in string format. ...",
375         "static": false,
376         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
377         "private": false,
378         "params": [
379
380         ],
381         "name": "getName",
382         "owner": "Ext.Base",
383         "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
384         "linenr": 631,
385         "return": {
386           "type": "String",
387           "doc": "<p>className</p>\n"
388         },
389         "html_filename": "Base3.html"
390       },
391       {
392         "deprecated": null,
393         "alias": null,
394         "protected": false,
395         "tagname": "method",
396         "href": "ZIndexManager.html#Ext-ZIndexManager-method-hideAll",
397         "shortDoc": "Hides all Components managed by this ZIndexManager. ...",
398         "static": false,
399         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
400         "private": false,
401         "params": [
402
403         ],
404         "name": "hideAll",
405         "owner": "Ext.ZIndexManager",
406         "doc": "<p>Hides all Components managed by this ZIndexManager.</p>\n",
407         "linenr": 257,
408         "return": {
409           "type": "void",
410           "doc": "\n"
411         },
412         "html_filename": "ZIndexManager.html"
413       },
414       {
415         "deprecated": null,
416         "alias": null,
417         "protected": false,
418         "tagname": "method",
419         "href": "Base3.html#Ext-Base-method-implement",
420         "shortDoc": "Add methods / properties to the prototype of this class. ...",
421         "static": true,
422         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
423         "private": false,
424         "params": [
425           {
426             "type": "Object",
427             "optional": false,
428             "doc": "\n",
429             "name": "members"
430           }
431         ],
432         "name": "implement",
433         "owner": "Ext.Base",
434         "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
435         "linenr": 415,
436         "return": {
437           "type": "void",
438           "doc": "\n"
439         },
440         "html_filename": "Base3.html"
441       },
442       {
443         "deprecated": null,
444         "alias": null,
445         "protected": true,
446         "tagname": "method",
447         "href": "Base3.html#Ext-Base-method-initConfig",
448         "shortDoc": "Initialize configuration for this class. ...",
449         "static": false,
450         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
451         "private": false,
452         "params": [
453           {
454             "type": "Object",
455             "optional": false,
456             "doc": "\n",
457             "name": "config"
458           }
459         ],
460         "name": "initConfig",
461         "owner": "Ext.Base",
462         "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
463         "linenr": 63,
464         "return": {
465           "type": "Object",
466           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
467         },
468         "html_filename": "Base3.html"
469       },
470       {
471         "deprecated": null,
472         "alias": null,
473         "protected": false,
474         "tagname": "method",
475         "href": "Base3.html#Ext-Base-method-override",
476         "shortDoc": "Override prototype members of this class. ...",
477         "static": true,
478         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
479         "private": false,
480         "params": [
481           {
482             "type": "Object",
483             "optional": false,
484             "doc": "\n",
485             "name": "members"
486           }
487         ],
488         "name": "override",
489         "owner": "Ext.Base",
490         "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
491         "linenr": 518,
492         "return": {
493           "type": "Ext.Base",
494           "doc": "<p>this</p>\n"
495         },
496         "html_filename": "Base3.html"
497       },
498       {
499         "deprecated": null,
500         "alias": null,
501         "protected": false,
502         "tagname": "method",
503         "href": "ZIndexManager.html#Ext-ZIndexManager-method-register",
504         "shortDoc": "Registers a floating Ext.Component with this ZIndexManager. ...",
505         "static": false,
506         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
507         "private": false,
508         "params": [
509           {
510             "type": "Component",
511             "optional": false,
512             "doc": "<p>The Component to register.</p>\n",
513             "name": "comp"
514           }
515         ],
516         "name": "register",
517         "owner": "Ext.ZIndexManager",
518         "doc": "<p>Registers a floating <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> with this ZIndexManager. This should not\nneed to be called under normal circumstances. Floating Components (such as Windows, BoundLists and Menus) are automatically registered\nwith a <a href=\"#/api/Ext.Component-property-zIndexManager\" rel=\"Ext.Component-property-zIndexManager\" class=\"docClass\">zIndexManager</a> at render time.</p>\n\n\n<p>Where this may be useful is moving Windows between two ZIndexManagers. For example,\nto bring the <a href=\"#/api/Ext.window.MessageBox\" rel=\"Ext.window.MessageBox\" class=\"docClass\">Ext.MessageBox</a> dialog under the same manager as the Desktop's\nZIndexManager in the desktop sample app:</p>\n\n\n<p><code></p>\n\n<pre>MyDesktop.getDesktop().getManager().register(Ext.MessageBox);\n</pre>\n\n\n<p></code></p>\n",
519         "linenr": 173,
520         "return": {
521           "type": "void",
522           "doc": "\n"
523         },
524         "html_filename": "ZIndexManager.html"
525       },
526       {
527         "deprecated": null,
528         "alias": null,
529         "protected": false,
530         "tagname": "method",
531         "href": "ZIndexManager.html#Ext-ZIndexManager-method-sendToBack",
532         "shortDoc": "Sends the specified Component to the back of other active Components in this ZIndexManager. ...",
533         "static": false,
534         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
535         "private": false,
536         "params": [
537           {
538             "type": "String/Object",
539             "optional": false,
540             "doc": "<p>The id of the Component or a <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> instance</p>\n",
541             "name": "comp"
542           }
543         ],
544         "name": "sendToBack",
545         "owner": "Ext.ZIndexManager",
546         "doc": "<p>Sends the specified Component to the back of other active Components in this ZIndexManager.</p>\n",
547         "linenr": 244,
548         "return": {
549           "type": "Ext.Component",
550           "doc": "<p>The Component</p>\n"
551         },
552         "html_filename": "ZIndexManager.html"
553       },
554       {
555         "deprecated": null,
556         "alias": null,
557         "protected": true,
558         "tagname": "method",
559         "href": "Base3.html#Ext-Base-method-statics",
560         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
561         "static": false,
562         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
563         "private": false,
564         "params": [
565
566         ],
567         "name": "statics",
568         "owner": "Ext.Base",
569         "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
570         "linenr": 199,
571         "return": {
572           "type": "Class",
573           "doc": "\n"
574         },
575         "html_filename": "Base3.html"
576       },
577       {
578         "deprecated": null,
579         "alias": null,
580         "protected": false,
581         "tagname": "method",
582         "href": "ZIndexManager.html#Ext-ZIndexManager-method-unregister",
583         "shortDoc": "Unregisters a Ext.Component from this ZIndexManager. ...",
584         "static": false,
585         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
586         "private": false,
587         "params": [
588           {
589             "type": "Component",
590             "optional": false,
591             "doc": "<p>The Component to unregister.</p>\n",
592             "name": "comp"
593           }
594         ],
595         "name": "unregister",
596         "owner": "Ext.ZIndexManager",
597         "doc": "<p>Unregisters a <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> from this ZIndexManager. This should not\nneed to be called. Components are automatically unregistered upon destruction.\nSee <a href=\"#/api/Ext.ZIndexManager-method-register\" rel=\"Ext.ZIndexManager-method-register\" class=\"docClass\">register</a>.</p>\n\n",
598         "linenr": 195,
599         "return": {
600           "type": "void",
601           "doc": "\n"
602         },
603         "html_filename": "ZIndexManager.html"
604       }
605     ],
606     "property": [
607       {
608         "type": "Class",
609         "deprecated": null,
610         "alias": null,
611         "protected": true,
612         "tagname": "property",
613         "href": "Base3.html#Ext-Base-property-self",
614         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
615         "static": false,
616         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
617         "private": false,
618         "name": "self",
619         "owner": "Ext.Base",
620         "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
621         "linenr": 18,
622         "html_filename": "Base3.html"
623       }
624     ],
625     "cssVar": [
626
627     ],
628     "cssMixin": [
629
630     ],
631     "event": [
632
633     ]
634   },
635   "singleton": false,
636   "alias": null,
637   "superclasses": [
638     "Ext.Base"
639   ],
640   "protected": false,
641   "tagname": "class",
642   "mixins": [
643
644   ],
645   "href": "ZIndexManager.html#Ext-ZIndexManager",
646   "subclasses": [
647     "Ext.WindowManager"
648   ],
649   "static": false,
650   "author": null,
651   "component": false,
652   "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/ZIndexManager.js",
653   "private": false,
654   "alternateClassNames": [
655     "Ext.WindowGroup"
656   ],
657   "name": "Ext.ZIndexManager",
658   "doc": "<p>A class that manages a group of <a href=\"#/api/Ext.Component-cfg-floating\" rel=\"Ext.Component-cfg-floating\" class=\"docClass\">Ext.Component.floating</a> Components and provides z-order management,\nand Component activation behavior, including masking below the active (topmost) Component.</p>\n\n\n<p><a href=\"#/api/Ext.Component-cfg-floating\" rel=\"Ext.Component-cfg-floating\" class=\"docClass\">Floating</a> Components which are rendered directly into the document (Such as <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>s which are\n<a href=\"#/api/Ext.Component-event-show\" rel=\"Ext.Component-event-show\" class=\"docClass\">show</a>n are managed by a <a href=\"#/api/Ext.WindowManager\" rel=\"Ext.WindowManager\" class=\"docClass\">global instance</a>.</p>\n\n\n<p><a href=\"#/api/Ext.Component-cfg-floating\" rel=\"Ext.Component-cfg-floating\" class=\"docClass\">Floating</a> Components which are descendants of <a href=\"#/api/Ext.Component-cfg-floating\" rel=\"Ext.Component-cfg-floating\" class=\"docClass\">floating</a> <i>Containers</i>\n(For example a {<a href=\"#/api/Ext.view.BoundList\" rel=\"Ext.view.BoundList\" class=\"docClass\">Ext.view.BoundList</a> BoundList} within an <a href=\"#/api/Ext.window.Window\" rel=\"Ext.window.Window\" class=\"docClass\">Window</a>, or a <a href=\"#/api/Ext.menu.Menu\" rel=\"Ext.menu.Menu\" class=\"docClass\">Menu</a>),\nare managed by a ZIndexManager owned by that floating Container. So ComboBox dropdowns within Windows will have managed z-indices\nguaranteed to be correct, relative to the Window.</p>\n\n",
659   "mixedInto": [
660
661   ],
662   "linenr": 1,
663   "xtypes": [
664
665   ],
666   "html_filename": "ZIndexManager.html",
667   "extends": "Ext.Base"
668 });