Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.grid.plugin.HeaderResizer.js
1 Ext.data.JsonP.Ext_grid_plugin_HeaderResizer({
2   "allMixins": [
3
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9       {
10         "type": "Boolean",
11         "deprecated": null,
12         "alias": null,
13         "protected": false,
14         "tagname": "cfg",
15         "href": "HeaderResizer.html#Ext-grid-plugin-HeaderResizer-cfg-dynamic",
16         "shortDoc": "Set to true to resize on the fly rather than using a proxy marker. ...",
17         "static": false,
18         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/plugin/HeaderResizer.js",
19         "private": false,
20         "name": "dynamic",
21         "owner": "Ext.grid.plugin.HeaderResizer",
22         "doc": "<p>Set to true to resize on the fly rather than using a proxy marker. Defaults to false.</p>\n",
23         "linenr": 18,
24         "html_filename": "HeaderResizer.html"
25       },
26       {
27         "type": "Object",
28         "deprecated": null,
29         "alias": null,
30         "protected": false,
31         "tagname": "cfg",
32         "href": "Observable.html#Ext-util-Observable-cfg-listeners",
33         "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
34         "static": false,
35         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
36         "private": false,
37         "name": "listeners",
38         "owner": "Ext.util.Observable",
39         "doc": "<p>A config object containing one or more event handlers to be added to this object during initialization. This\nshould be a valid listeners config object as specified in the <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-addListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple\nhandlers at once.</p>\n\n<p><strong>DOM events from ExtJS <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></strong></p>\n\n<p>While <em>some</em> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this is usually\nonly done when extra value can be added. For example the <a href=\"#/api/Ext.view.View\" rel=\"Ext.view.View\" class=\"docClass\">DataView</a>'s <strong><code><a href=\"#/api/Ext.view.View-event-itemclick\" rel=\"Ext.view.View-event-itemclick\" class=\"docClass\">itemclick</a></code></strong> event passing the node clicked on. To access DOM events directly from a\nchild element of a Component, we need to specify the <code>element</code> option to identify the Component property to add a\nDOM listener to:</p>\n\n<pre><code>new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n</code></pre>\n",
40         "linenr": 102,
41         "html_filename": "Observable.html"
42       }
43     ],
44     "method": [
45       {
46         "deprecated": null,
47         "alias": null,
48         "protected": false,
49         "tagname": "method",
50         "href": "Observable.html#Ext-util-Observable-method-addEvents",
51         "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
52         "static": false,
53         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
54         "private": false,
55         "params": [
56           {
57             "type": "Object/String",
58             "optional": false,
59             "doc": "<p>Either an object with event names as properties with a value of <code>true</code> or the first\nevent name string if multiple event names are being passed as separate parameters. Usage:</p>\n\n<pre><code>this.addEvents({\n    storeloaded: true,\n    storecleared: true\n});\n</code></pre>\n",
60             "name": "o"
61           },
62           {
63             "type": "String...",
64             "optional": false,
65             "doc": "<p>Optional additional event names if multiple event names are being passed as separate\nparameters. Usage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n",
66             "name": "more"
67           }
68         ],
69         "name": "addEvents",
70         "owner": "Ext.util.Observable",
71         "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
72         "linenr": 494,
73         "return": {
74           "type": "void",
75           "doc": "\n"
76         },
77         "html_filename": "Observable.html"
78       },
79       {
80         "deprecated": null,
81         "alias": null,
82         "protected": false,
83         "tagname": "method",
84         "href": "Observable.html#Ext-util-Observable-method-addListener",
85         "shortDoc": "Appends an event handler to this object. ...",
86         "static": false,
87         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
88         "private": false,
89         "params": [
90           {
91             "type": "String",
92             "optional": false,
93             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
94             "name": "eventName"
95           },
96           {
97             "type": "Function",
98             "optional": false,
99             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-fireEvent\" rel=\"Ext.grid.plugin.HeaderResizer-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
100             "name": "handler"
101           },
102           {
103             "type": "Object",
104             "optional": true,
105             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the handler function is executed. <strong>If\nomitted, defaults to the object which fired the event.</strong></p>\n",
106             "name": "scope"
107           },
108           {
109             "type": "Object",
110             "optional": true,
111             "doc": "<p>(optional) An object containing handler configuration.</p>\n\n<p><strong>Note:</strong> Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.</p>\n\n<p>This object may contain any of the following properties:</p>\n\n<ul>\n<li><p><strong>scope</strong> : Object</p>\n\n<p>The scope (<code>this</code> reference) in which the handler function is executed. <strong>If omitted, defaults to the object\nwhich fired the event.</strong></p></li>\n<li><p><strong>delay</strong> : Number</p>\n\n<p>The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>\n<li><p><strong>single</strong> : Boolean</p>\n\n<p>True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>\n<li><p><strong>buffer</strong> : Number</p>\n\n<p>Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is <em>not</em> invoked, but the new\nhandler is scheduled in its place.</p></li>\n<li><p><strong>target</strong> : Observable</p>\n\n<p>Only call the handler if the event was fired on the target Observable, <em>not</em> if the event was bubbled up from a\nchild Observable.</p></li>\n<li><p><strong>element</strong> : String</p>\n\n<p><strong>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</strong> The name of a Component\nproperty which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of\n<a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:</p>\n\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></li>\n</ul>\n\n\n<p><strong>Combining Options</strong></p>\n\n<p>Using the options argument, it is possible to combine different types of listeners:</p>\n\n<p>A delayed, one-time listener.</p>\n\n<pre><code>myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n</code></pre>\n\n<p><strong>Attaching multiple handlers in 1 call</strong></p>\n\n<p>The method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>\n\n<p>One can also specify options for each event handler separately:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n</code></pre>\n",
112             "name": "options"
113           }
114         ],
115         "name": "addListener",
116         "owner": "Ext.util.Observable",
117         "doc": "<p>Appends an event handler to this object.</p>\n",
118         "linenr": 278,
119         "return": {
120           "type": "void",
121           "doc": "\n"
122         },
123         "html_filename": "Observable.html"
124       },
125       {
126         "deprecated": null,
127         "alias": null,
128         "protected": false,
129         "tagname": "method",
130         "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
131         "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
132         "static": false,
133         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
134         "private": false,
135         "params": [
136           {
137             "type": "Observable/Element",
138             "optional": false,
139             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
140             "name": "item"
141           },
142           {
143             "type": "Object/String",
144             "optional": false,
145             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
146             "name": "ename"
147           },
148           {
149             "type": "Function",
150             "optional": true,
151             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
152             "name": "fn"
153           },
154           {
155             "type": "Object",
156             "optional": true,
157             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
158             "name": "scope"
159           },
160           {
161             "type": "Object",
162             "optional": true,
163             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the\n<a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
164             "name": "opt"
165           }
166         ],
167         "name": "addManagedListener",
168         "owner": "Ext.util.Observable",
169         "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
170         "linenr": 156,
171         "return": {
172           "type": "void",
173           "doc": "\n"
174         },
175         "html_filename": "Observable.html"
176       },
177       {
178         "deprecated": null,
179         "alias": null,
180         "protected": false,
181         "tagname": "method",
182         "href": "Base3.html#Ext-Base-method-addStatics",
183         "shortDoc": "Add / override static properties of this class. ...",
184         "static": true,
185         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
186         "private": false,
187         "params": [
188           {
189             "type": "Object",
190             "optional": false,
191             "doc": "\n",
192             "name": "members"
193           }
194         ],
195         "name": "addStatics",
196         "owner": "Ext.Base",
197         "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",
198         "linenr": 388,
199         "return": {
200           "type": "Ext.Base",
201           "doc": "<p>this</p>\n"
202         },
203         "html_filename": "Base3.html"
204       },
205       {
206         "deprecated": null,
207         "alias": null,
208         "protected": false,
209         "tagname": "method",
210         "href": "Base3.html#Ext-Base-method-callOverridden",
211         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
212         "static": false,
213         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
214         "private": false,
215         "params": [
216           {
217             "type": "Array/Arguments",
218             "optional": false,
219             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
220             "name": "args"
221           }
222         ],
223         "name": "callOverridden",
224         "owner": "Ext.Base",
225         "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",
226         "linenr": 269,
227         "return": {
228           "type": "Mixed",
229           "doc": "<p>Returns the result after calling the overridden method</p>\n"
230         },
231         "html_filename": "Base3.html"
232       },
233       {
234         "deprecated": null,
235         "alias": null,
236         "protected": true,
237         "tagname": "method",
238         "href": "Base3.html#Ext-Base-method-callParent",
239         "shortDoc": "Call the parent's overridden method. ...",
240         "static": false,
241         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
242         "private": false,
243         "params": [
244           {
245             "type": "Array/Arguments",
246             "optional": false,
247             "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",
248             "name": "args"
249           }
250         ],
251         "name": "callParent",
252         "owner": "Ext.Base",
253         "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",
254         "linenr": 124,
255         "return": {
256           "type": "Mixed",
257           "doc": "<p>Returns the result from the superclass' method</p>\n"
258         },
259         "html_filename": "Base3.html"
260       },
261       {
262         "deprecated": null,
263         "alias": null,
264         "protected": false,
265         "tagname": "method",
266         "href": "Observable.html#Ext-util-Observable-method-capture",
267         "shortDoc": "Starts capture on the specified Observable. ...",
268         "static": true,
269         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
270         "private": false,
271         "params": [
272           {
273             "type": "Observable",
274             "optional": false,
275             "doc": "<p>The Observable to capture events from.</p>\n",
276             "name": "o"
277           },
278           {
279             "type": "Function",
280             "optional": false,
281             "doc": "<p>The function to call when an event is fired.</p>\n",
282             "name": "fn"
283           },
284           {
285             "type": "Object",
286             "optional": true,
287             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
288             "name": "scope"
289           }
290         ],
291         "name": "capture",
292         "owner": "Ext.util.Observable",
293         "doc": "<p>Starts capture on the specified Observable. All events will be passed to the supplied function with the event\nname + standard signature of the event <strong>before</strong> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
294         "linenr": 54,
295         "return": {
296           "type": "void",
297           "doc": "\n"
298         },
299         "html_filename": "Observable.html"
300       },
301       {
302         "deprecated": null,
303         "alias": null,
304         "protected": false,
305         "tagname": "method",
306         "href": "Observable.html#Ext-util-Observable-method-clearListeners",
307         "shortDoc": "Removes all listeners for this object including the managed listeners ...",
308         "static": false,
309         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
310         "private": false,
311         "params": [
312
313         ],
314         "name": "clearListeners",
315         "owner": "Ext.util.Observable",
316         "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
317         "linenr": 425,
318         "return": {
319           "type": "void",
320           "doc": "\n"
321         },
322         "html_filename": "Observable.html"
323       },
324       {
325         "deprecated": null,
326         "alias": null,
327         "protected": false,
328         "tagname": "method",
329         "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
330         "shortDoc": "Removes all managed listeners for this object. ...",
331         "static": false,
332         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
333         "private": false,
334         "params": [
335
336         ],
337         "name": "clearManagedListeners",
338         "owner": "Ext.util.Observable",
339         "doc": "<p>Removes all managed listeners for this object.</p>\n",
340         "linenr": 454,
341         "return": {
342           "type": "void",
343           "doc": "\n"
344         },
345         "html_filename": "Observable.html"
346       },
347       {
348         "deprecated": null,
349         "alias": null,
350         "protected": false,
351         "tagname": "method",
352         "href": "Base3.html#Ext-Base-method-create",
353         "shortDoc": "Create a new instance of this Class. ...",
354         "static": true,
355         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
356         "private": false,
357         "params": [
358
359         ],
360         "name": "create",
361         "owner": "Ext.Base",
362         "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",
363         "linenr": 329,
364         "return": {
365           "type": "Object",
366           "doc": "<p>the created instance.</p>\n"
367         },
368         "html_filename": "Base3.html"
369       },
370       {
371         "deprecated": null,
372         "alias": null,
373         "protected": false,
374         "tagname": "method",
375         "href": "Base3.html#Ext-Base-method-createAlias",
376         "shortDoc": "Create aliases for existing prototype methods. ...",
377         "static": true,
378         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
379         "private": false,
380         "params": [
381           {
382             "type": "String/Object",
383             "optional": false,
384             "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",
385             "name": "alias"
386           },
387           {
388             "type": "String/Object",
389             "optional": false,
390             "doc": "<p>The original method name</p>\n",
391             "name": "origin"
392           }
393         ],
394         "name": "createAlias",
395         "owner": "Ext.Base",
396         "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",
397         "linenr": 648,
398         "return": {
399           "type": "void",
400           "doc": "\n"
401         },
402         "html_filename": "Base3.html"
403       },
404       {
405         "deprecated": null,
406         "alias": null,
407         "protected": false,
408         "tagname": "method",
409         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
410         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
411         "static": false,
412         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
413         "private": false,
414         "params": [
415           {
416             "type": "String/[String]",
417             "optional": false,
418             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
419             "name": "events"
420           }
421         ],
422         "name": "enableBubble",
423         "owner": "Ext.util.Observable",
424         "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling <code>this.getBubbleTarget()</code> if\npresent. There is no implementation in the Observable base class.</p>\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers.\nSee <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default implementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the\nComponent's immediate owner. But if a known target is required, this can be overridden to access the\nrequired target more quickly.</p>\n\n<p>Example:</p>\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n        this.enableBubble('change');\n    }),\n\n    //  We know that we want Field's events to bubble directly to the FormPanel.\n    getBubbleTarget : function() {\n        if (!this.formPanel) {\n            this.formPanel = this.findParentByType('form');\n        }\n        return this.formPanel;\n    }\n});\n\nvar myForm = new Ext.formPanel({\n    title: 'User Details',\n    items: [{\n        ...\n    }],\n    listeners: {\n        change: function() {\n            // Title goes red if form has been modified.\n            myForm.header.setStyle('color', 'red');\n        }\n    }\n});\n</code></pre>\n",
425         "linenr": 609,
426         "return": {
427           "type": "void",
428           "doc": "\n"
429         },
430         "html_filename": "Observable.html"
431       },
432       {
433         "deprecated": null,
434         "alias": null,
435         "protected": false,
436         "tagname": "method",
437         "href": "Observable.html#Ext-util-Observable-method-fireEvent",
438         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
439         "static": false,
440         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
441         "private": false,
442         "params": [
443           {
444             "type": "String",
445             "optional": false,
446             "doc": "<p>The name of the event to fire.</p>\n",
447             "name": "eventName"
448           },
449           {
450             "type": "Object...",
451             "optional": false,
452             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
453             "name": "args"
454           }
455         ],
456         "name": "fireEvent",
457         "owner": "Ext.util.Observable",
458         "doc": "<p>Fires the specified event with the passed parameters (minus the event name, plus the <code>options</code> object passed\nto <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-addListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-addListener\" class=\"docClass\">addListener</a>).</p>\n\n<p>An event may be set to bubble up an Observable parent hierarchy (See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>) by\ncalling <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-enableBubble\" rel=\"Ext.grid.plugin.HeaderResizer-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
459         "linenr": 233,
460         "return": {
461           "type": "Boolean",
462           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
463         },
464         "html_filename": "Observable.html"
465       },
466       {
467         "deprecated": null,
468         "alias": null,
469         "protected": false,
470         "tagname": "method",
471         "href": "Base3.html#Ext-Base-method-getName",
472         "shortDoc": "Get the current class' name in string format. ...",
473         "static": false,
474         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
475         "private": false,
476         "params": [
477
478         ],
479         "name": "getName",
480         "owner": "Ext.Base",
481         "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",
482         "linenr": 631,
483         "return": {
484           "type": "String",
485           "doc": "<p>className</p>\n"
486         },
487         "html_filename": "Base3.html"
488       },
489       {
490         "deprecated": null,
491         "alias": null,
492         "protected": false,
493         "tagname": "method",
494         "href": "Observable.html#Ext-util-Observable-method-hasListener",
495         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
496         "static": false,
497         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
498         "private": false,
499         "params": [
500           {
501             "type": "String",
502             "optional": false,
503             "doc": "<p>The name of the event to check for</p>\n",
504             "name": "eventName"
505           }
506         ],
507         "name": "hasListener",
508         "owner": "Ext.util.Observable",
509         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
510         "linenr": 530,
511         "return": {
512           "type": "Boolean",
513           "doc": "<p>True if the event is being listened for, else false</p>\n"
514         },
515         "html_filename": "Observable.html"
516       },
517       {
518         "deprecated": null,
519         "alias": null,
520         "protected": false,
521         "tagname": "method",
522         "href": "Base3.html#Ext-Base-method-implement",
523         "shortDoc": "Add methods / properties to the prototype of this class. ...",
524         "static": true,
525         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
526         "private": false,
527         "params": [
528           {
529             "type": "Object",
530             "optional": false,
531             "doc": "\n",
532             "name": "members"
533           }
534         ],
535         "name": "implement",
536         "owner": "Ext.Base",
537         "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",
538         "linenr": 415,
539         "return": {
540           "type": "void",
541           "doc": "\n"
542         },
543         "html_filename": "Base3.html"
544       },
545       {
546         "deprecated": null,
547         "alias": null,
548         "protected": true,
549         "tagname": "method",
550         "href": "Base3.html#Ext-Base-method-initConfig",
551         "shortDoc": "Initialize configuration for this class. ...",
552         "static": false,
553         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
554         "private": false,
555         "params": [
556           {
557             "type": "Object",
558             "optional": false,
559             "doc": "\n",
560             "name": "config"
561           }
562         ],
563         "name": "initConfig",
564         "owner": "Ext.Base",
565         "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",
566         "linenr": 63,
567         "return": {
568           "type": "Object",
569           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
570         },
571         "html_filename": "Base3.html"
572       },
573       {
574         "deprecated": null,
575         "alias": {
576           "tagname": "alias",
577           "cls": "Ext.util.Observable",
578           "doc": null,
579           "owner": "addManagedListener"
580         },
581         "protected": false,
582         "tagname": "method",
583         "href": "Observable.html#Ext-util-Observable-method-mon",
584         "shortDoc": "Shorthand for addManagedListener. ...",
585         "static": false,
586         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
587         "private": false,
588         "params": [
589           {
590             "type": "Observable/Element",
591             "optional": false,
592             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
593             "name": "item"
594           },
595           {
596             "type": "Object/String",
597             "optional": false,
598             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
599             "name": "ename"
600           },
601           {
602             "type": "Function",
603             "optional": true,
604             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
605             "name": "fn"
606           },
607           {
608             "type": "Object",
609             "optional": true,
610             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
611             "name": "scope"
612           },
613           {
614             "type": "Object",
615             "optional": true,
616             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the\n<a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
617             "name": "opt"
618           }
619         ],
620         "name": "mon",
621         "owner": "Ext.util.Observable",
622         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-addManagedListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-addManagedListener\" class=\"docClass\">addManagedListener</a>.</p>\n\n<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
623         "linenr": 681,
624         "return": {
625           "type": "void",
626           "doc": "\n"
627         },
628         "html_filename": "Observable.html"
629       },
630       {
631         "deprecated": null,
632         "alias": {
633           "tagname": "alias",
634           "cls": "Ext.util.Observable",
635           "doc": null,
636           "owner": "removeManagedListener"
637         },
638         "protected": false,
639         "tagname": "method",
640         "href": "Observable.html#Ext-util-Observable-method-mun",
641         "shortDoc": "Shorthand for removeManagedListener. ...",
642         "static": false,
643         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
644         "private": false,
645         "params": [
646           {
647             "type": "Observable|Element",
648             "optional": false,
649             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
650             "name": "item"
651           },
652           {
653             "type": "Object|String",
654             "optional": false,
655             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
656             "name": "ename"
657           },
658           {
659             "type": "Function",
660             "optional": false,
661             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
662             "name": "fn"
663           },
664           {
665             "type": "Object",
666             "optional": false,
667             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
668             "name": "scope"
669           }
670         ],
671         "name": "mun",
672         "owner": "Ext.util.Observable",
673         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-removeManagedListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-mon\" rel=\"Ext.grid.plugin.HeaderResizer-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
674         "linenr": 687,
675         "return": {
676           "type": "void",
677           "doc": "\n"
678         },
679         "html_filename": "Observable.html"
680       },
681       {
682         "deprecated": null,
683         "alias": null,
684         "protected": false,
685         "tagname": "method",
686         "href": "Observable.html#Ext-util-Observable-method-observe",
687         "shortDoc": "Sets observability on the passed class constructor. ...",
688         "static": true,
689         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
690         "private": false,
691         "params": [
692           {
693             "type": "Function",
694             "optional": false,
695             "doc": "<p>The class constructor to make observable.</p>\n",
696             "name": "c"
697           },
698           {
699             "type": "Object",
700             "optional": false,
701             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-addListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
702             "name": "listeners"
703           }
704         ],
705         "name": "observe",
706         "owner": "Ext.util.Observable",
707         "doc": "<p>Sets observability on the passed class constructor.</p>\n\n<p>This makes any event fired on any instance of the passed class also fire a single event through\nthe <strong>class</strong> allowing for central handling of events on many instances at once.</p>\n\n<p>Usage:</p>\n\n<pre><code>Ext.util.Observable.observe(Ext.data.Connection);\nExt.data.Connection.on('beforerequest', function(con, options) {\n    console.log('Ajax request made to ' + options.url);\n});\n</code></pre>\n",
708         "linenr": 69,
709         "return": {
710           "type": "void",
711           "doc": "\n"
712         },
713         "html_filename": "Observable.html"
714       },
715       {
716         "deprecated": null,
717         "alias": {
718           "tagname": "alias",
719           "cls": "Ext.util.Observable",
720           "doc": null,
721           "owner": "addListener"
722         },
723         "protected": false,
724         "tagname": "method",
725         "href": "Observable.html#Ext-util-Observable-method-on",
726         "shortDoc": "Shorthand for addListener. ...",
727         "static": false,
728         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
729         "private": false,
730         "params": [
731           {
732             "type": "String",
733             "optional": false,
734             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
735             "name": "eventName"
736           },
737           {
738             "type": "Function",
739             "optional": false,
740             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-fireEvent\" rel=\"Ext.grid.plugin.HeaderResizer-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
741             "name": "handler"
742           },
743           {
744             "type": "Object",
745             "optional": true,
746             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the handler function is executed. <strong>If\nomitted, defaults to the object which fired the event.</strong></p>\n",
747             "name": "scope"
748           },
749           {
750             "type": "Object",
751             "optional": true,
752             "doc": "<p>(optional) An object containing handler configuration.</p>\n\n<p><strong>Note:</strong> Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.</p>\n\n<p>This object may contain any of the following properties:</p>\n\n<ul>\n<li><p><strong>scope</strong> : Object</p>\n\n<p>The scope (<code>this</code> reference) in which the handler function is executed. <strong>If omitted, defaults to the object\nwhich fired the event.</strong></p></li>\n<li><p><strong>delay</strong> : Number</p>\n\n<p>The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>\n<li><p><strong>single</strong> : Boolean</p>\n\n<p>True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>\n<li><p><strong>buffer</strong> : Number</p>\n\n<p>Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is <em>not</em> invoked, but the new\nhandler is scheduled in its place.</p></li>\n<li><p><strong>target</strong> : Observable</p>\n\n<p>Only call the handler if the event was fired on the target Observable, <em>not</em> if the event was bubbled up from a\nchild Observable.</p></li>\n<li><p><strong>element</strong> : String</p>\n\n<p><strong>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</strong> The name of a Component\nproperty which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of\n<a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:</p>\n\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></li>\n</ul>\n\n\n<p><strong>Combining Options</strong></p>\n\n<p>Using the options argument, it is possible to combine different types of listeners:</p>\n\n<p>A delayed, one-time listener.</p>\n\n<pre><code>myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n</code></pre>\n\n<p><strong>Attaching multiple handlers in 1 call</strong></p>\n\n<p>The method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>\n\n<p>One can also specify options for each event handler separately:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n</code></pre>\n",
753             "name": "options"
754           }
755         ],
756         "name": "on",
757         "owner": "Ext.util.Observable",
758         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-addListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
759         "linenr": 669,
760         "return": {
761           "type": "void",
762           "doc": "\n"
763         },
764         "html_filename": "Observable.html"
765       },
766       {
767         "deprecated": null,
768         "alias": null,
769         "protected": false,
770         "tagname": "method",
771         "href": "Base3.html#Ext-Base-method-override",
772         "shortDoc": "Override prototype members of this class. ...",
773         "static": true,
774         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
775         "private": false,
776         "params": [
777           {
778             "type": "Object",
779             "optional": false,
780             "doc": "\n",
781             "name": "members"
782           }
783         ],
784         "name": "override",
785         "owner": "Ext.Base",
786         "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",
787         "linenr": 518,
788         "return": {
789           "type": "Ext.Base",
790           "doc": "<p>this</p>\n"
791         },
792         "html_filename": "Base3.html"
793       },
794       {
795         "deprecated": null,
796         "alias": null,
797         "protected": false,
798         "tagname": "method",
799         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
800         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
801         "static": false,
802         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
803         "private": false,
804         "params": [
805           {
806             "type": "Object",
807             "optional": false,
808             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
809             "name": "origin"
810           },
811           {
812             "type": "[String]",
813             "optional": false,
814             "doc": "<p>Array of event names to relay.</p>\n",
815             "name": "events"
816           },
817           {
818             "type": "Object",
819             "optional": false,
820             "doc": "\n",
821             "name": "prefix"
822           }
823         ],
824         "name": "relayEvents",
825         "owner": "Ext.util.Observable",
826         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
827         "linenr": 573,
828         "return": {
829           "type": "void",
830           "doc": "\n"
831         },
832         "html_filename": "Observable.html"
833       },
834       {
835         "deprecated": null,
836         "alias": null,
837         "protected": false,
838         "tagname": "method",
839         "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
840         "shortDoc": "Removes all added captures from the Observable. ...",
841         "static": true,
842         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
843         "private": false,
844         "params": [
845           {
846             "type": "Observable",
847             "optional": false,
848             "doc": "<p>The Observable to release</p>\n",
849             "name": "o"
850           }
851         ],
852         "name": "releaseCapture",
853         "owner": "Ext.util.Observable",
854         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
855         "linenr": 44,
856         "return": {
857           "type": "void",
858           "doc": "\n"
859         },
860         "html_filename": "Observable.html"
861       },
862       {
863         "deprecated": null,
864         "alias": null,
865         "protected": false,
866         "tagname": "method",
867         "href": "Observable.html#Ext-util-Observable-method-removeListener",
868         "shortDoc": "Removes an event handler. ...",
869         "static": false,
870         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
871         "private": false,
872         "params": [
873           {
874             "type": "String",
875             "optional": false,
876             "doc": "<p>The type of event the handler was associated with.</p>\n",
877             "name": "eventName"
878           },
879           {
880             "type": "Function",
881             "optional": false,
882             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-addListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
883             "name": "handler"
884           },
885           {
886             "type": "Object",
887             "optional": true,
888             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
889             "name": "scope"
890           }
891         ],
892         "name": "removeListener",
893         "owner": "Ext.util.Observable",
894         "doc": "<p>Removes an event handler.</p>\n",
895         "linenr": 392,
896         "return": {
897           "type": "void",
898           "doc": "\n"
899         },
900         "html_filename": "Observable.html"
901       },
902       {
903         "deprecated": null,
904         "alias": null,
905         "protected": false,
906         "tagname": "method",
907         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
908         "shortDoc": "Removes listeners that were added by the mon method. ...",
909         "static": false,
910         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
911         "private": false,
912         "params": [
913           {
914             "type": "Observable|Element",
915             "optional": false,
916             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
917             "name": "item"
918           },
919           {
920             "type": "Object|String",
921             "optional": false,
922             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
923             "name": "ename"
924           },
925           {
926             "type": "Function",
927             "optional": false,
928             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
929             "name": "fn"
930           },
931           {
932             "type": "Object",
933             "optional": false,
934             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
935             "name": "scope"
936           }
937         ],
938         "name": "removeManagedListener",
939         "owner": "Ext.util.Observable",
940         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-mon\" rel=\"Ext.grid.plugin.HeaderResizer-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
941         "linenr": 197,
942         "return": {
943           "type": "void",
944           "doc": "\n"
945         },
946         "html_filename": "Observable.html"
947       },
948       {
949         "deprecated": null,
950         "alias": null,
951         "protected": false,
952         "tagname": "method",
953         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
954         "shortDoc": "Resumes firing events (see suspendEvents). ...",
955         "static": false,
956         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
957         "private": false,
958         "params": [
959
960         ],
961         "name": "resumeEvents",
962         "owner": "Ext.util.Observable",
963         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-suspendEvents\" rel=\"Ext.grid.plugin.HeaderResizer-method-suspendEvents\" class=\"docClass\">suspendEvents</a>).</p>\n\n<p>If events were suspended using the <code>**queueSuspended**</code> parameter, then all events fired\nduring event suspension will be sent to any listeners now.</p>\n",
964         "linenr": 554,
965         "return": {
966           "type": "void",
967           "doc": "\n"
968         },
969         "html_filename": "Observable.html"
970       },
971       {
972         "deprecated": null,
973         "alias": null,
974         "protected": true,
975         "tagname": "method",
976         "href": "Base3.html#Ext-Base-method-statics",
977         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
978         "static": false,
979         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
980         "private": false,
981         "params": [
982
983         ],
984         "name": "statics",
985         "owner": "Ext.Base",
986         "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",
987         "linenr": 199,
988         "return": {
989           "type": "Class",
990           "doc": "\n"
991         },
992         "html_filename": "Base3.html"
993       },
994       {
995         "deprecated": null,
996         "alias": null,
997         "protected": false,
998         "tagname": "method",
999         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1000         "shortDoc": "Suspends the firing of all events. ...",
1001         "static": false,
1002         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1003         "private": false,
1004         "params": [
1005           {
1006             "type": "Boolean",
1007             "optional": false,
1008             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-resumeEvents\" rel=\"Ext.grid.plugin.HeaderResizer-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1009             "name": "queueSuspended"
1010           }
1011         ],
1012         "name": "suspendEvents",
1013         "owner": "Ext.util.Observable",
1014         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-resumeEvents\" rel=\"Ext.grid.plugin.HeaderResizer-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1015         "linenr": 541,
1016         "return": {
1017           "type": "void",
1018           "doc": "\n"
1019         },
1020         "html_filename": "Observable.html"
1021       },
1022       {
1023         "deprecated": null,
1024         "alias": {
1025           "tagname": "alias",
1026           "cls": "Ext.util.Observable",
1027           "doc": null,
1028           "owner": "removeListener"
1029         },
1030         "protected": false,
1031         "tagname": "method",
1032         "href": "Observable.html#Ext-util-Observable-method-un",
1033         "shortDoc": "Shorthand for removeListener. ...",
1034         "static": false,
1035         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1036         "private": false,
1037         "params": [
1038           {
1039             "type": "String",
1040             "optional": false,
1041             "doc": "<p>The type of event the handler was associated with.</p>\n",
1042             "name": "eventName"
1043           },
1044           {
1045             "type": "Function",
1046             "optional": false,
1047             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-addListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1048             "name": "handler"
1049           },
1050           {
1051             "type": "Object",
1052             "optional": true,
1053             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1054             "name": "scope"
1055           }
1056         ],
1057         "name": "un",
1058         "owner": "Ext.util.Observable",
1059         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.plugin.HeaderResizer-method-removeListener\" rel=\"Ext.grid.plugin.HeaderResizer-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1060         "linenr": 675,
1061         "return": {
1062           "type": "void",
1063           "doc": "\n"
1064         },
1065         "html_filename": "Observable.html"
1066       }
1067     ],
1068     "property": [
1069       {
1070         "type": "Class",
1071         "deprecated": null,
1072         "alias": null,
1073         "protected": true,
1074         "tagname": "property",
1075         "href": "Base3.html#Ext-Base-property-self",
1076         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1077         "static": false,
1078         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1079         "private": false,
1080         "name": "self",
1081         "owner": "Ext.Base",
1082         "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",
1083         "linenr": 18,
1084         "html_filename": "Base3.html"
1085       }
1086     ],
1087     "cssVar": [
1088
1089     ],
1090     "cssMixin": [
1091
1092     ],
1093     "event": [
1094
1095     ]
1096   },
1097   "singleton": false,
1098   "alias": null,
1099   "superclasses": [
1100     "Ext.Base",
1101     "Ext.util.Observable"
1102   ],
1103   "protected": false,
1104   "tagname": "class",
1105   "mixins": [
1106
1107   ],
1108   "href": "HeaderResizer.html#Ext-grid-plugin-HeaderResizer",
1109   "subclasses": [
1110
1111   ],
1112   "static": false,
1113   "author": null,
1114   "component": false,
1115   "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/plugin/HeaderResizer.js",
1116   "private": false,
1117   "alternateClassNames": [
1118
1119   ],
1120   "name": "Ext.grid.plugin.HeaderResizer",
1121   "doc": "<p>Plugin to add header resizing functionality to a HeaderContainer.\nAlways resizing header to the left of the splitter you are resizing.</p>\n\n<p>Todo: Consider RTL support, columns would always calculate to the right of\n   the splitter instead of to the left.</p>\n",
1122   "mixedInto": [
1123
1124   ],
1125   "linenr": 1,
1126   "xtypes": [
1127
1128   ],
1129   "html_filename": "HeaderResizer.html",
1130   "extends": "Ext.util.Observable"
1131 });