Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.util.AbstractMixedCollection.js
1 Ext.data.JsonP.Ext_util_AbstractMixedCollection({
2   "tagname": "class",
3   "name": "Ext.util.AbstractMixedCollection",
4   "doc": "\n",
5   "extends": null,
6   "mixins": [
7     "Ext.util.Observable"
8   ],
9   "alternateClassNames": [
10
11   ],
12   "xtype": null,
13   "author": null,
14   "docauthor": null,
15   "singleton": false,
16   "private": false,
17   "cfg": [
18     {
19       "tagname": "cfg",
20       "name": "allowFunctions",
21       "member": "Ext.util.AbstractMixedCollection",
22       "type": "Boolean",
23       "doc": "<p>Specify <tt>true</tt> if the <a href=\"#/api/Ext.util.AbstractMixedCollection-method-addAll\" rel=\"Ext.util.AbstractMixedCollection-method-addAll\" class=\"docClass\">addAll</a>\nfunction should add function references to the collection. Defaults to\n<tt>false</tt>.</p>\n",
24       "private": false,
25       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
26       "linenr": 62,
27       "html_filename": "AbstractMixedCollection.html",
28       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-cfg-allowFunctions"
29     },
30     {
31       "tagname": "cfg",
32       "name": "listeners",
33       "member": "Ext.util.Observable",
34       "type": "Object",
35       "doc": "<p>(optional) <p>A config object containing one or more event handlers to be added to this\nobject during initialization.  This should be a valid listeners config object as specified in the\n<a href=\"#/api/Ext.util.AbstractMixedCollection-method-addListener\" rel=\"Ext.util.AbstractMixedCollection-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple handlers at once.</p></p>\n\n<br><p><b><u>DOM events from ExtJs <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></u></b></p>\n\n\n<br><p>While <i>some</i> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n<p>is usually only 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\n<b><code><a href=\"#/api/Ext.view.View--click\" rel=\"Ext.view.View--click\" class=\"docClass\">click</a></code></b> event passing the node clicked on. To access DOM\nevents directly from a child element of a Component, we need to specify the <code>element</code> option to\nidentify the Component property to add a DOM 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\n\n<p></p></p>\n",
36       "private": false,
37       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
38       "linenr": 103,
39       "html_filename": "Observable.html",
40       "href": "Observable.html#Ext-util-Observable-cfg-listeners",
41       "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization.  T..."
42     }
43   ],
44   "method": [
45     {
46       "tagname": "method",
47       "name": "add",
48       "member": "Ext.util.AbstractMixedCollection",
49       "doc": "<p>Adds an item to the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-add\" rel=\"Ext.util.AbstractMixedCollection-event-add\" class=\"docClass\">add</a> event when complete.</p>\n",
50       "params": [
51         {
52           "type": "String",
53           "name": "key",
54           "doc": "<p>The key to associate with the item, or the new item.</p>\n\n\n<p>If a <a href=\"#/api/Ext.util.AbstractMixedCollection-method-getKey\" rel=\"Ext.util.AbstractMixedCollection-method-getKey\" class=\"docClass\">getKey</a> implementation was specified for this MixedCollection,\nor if the key of the stored items is in a property called <tt><b>id</b></tt>,\nthe MixedCollection will be able to <i>derive</i> the key for the new item.\nIn this case just pass the new item in this parameter.</p>\n\n",
55           "optional": false
56         },
57         {
58           "type": "Object",
59           "name": "o",
60           "doc": "<p>The item to add.</p>\n",
61           "optional": false
62         }
63       ],
64       "return": {
65         "type": "Object",
66         "doc": "<p>The item added.</p>\n"
67       },
68       "private": false,
69       "static": false,
70       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
71       "linenr": 69,
72       "html_filename": "AbstractMixedCollection.html",
73       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-add",
74       "shortDoc": "<p>Adds an item to the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-add\" rel=\"Ext.util.AbstractMixedCollection-event-add\" class=\"docClass\">add</a> event when complete.</p>\n"
75     },
76     {
77       "tagname": "method",
78       "name": "addAll",
79       "member": "Ext.util.AbstractMixedCollection",
80       "doc": "<p>Adds all elements of an Array or an Object to the collection.</p>\n",
81       "params": [
82         {
83           "type": "Object/Array",
84           "name": "objs",
85           "doc": "<p>An Object containing properties which will be added\nto the collection, or an Array of values, each of which are added to the collection.\nFunctions references will be added to the collection if <code><a href=\"#/api/Ext.util.AbstractMixedCollection-cfg-allowFunctions\" rel=\"Ext.util.AbstractMixedCollection-cfg-allowFunctions\" class=\"docClass\">allowFunctions</a></code>\nhas been set to <tt>true</tt>.</p>\n",
86           "optional": false
87         }
88       ],
89       "return": {
90         "type": "void",
91         "doc": "\n"
92       },
93       "private": false,
94       "static": false,
95       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
96       "linenr": 166,
97       "html_filename": "AbstractMixedCollection.html",
98       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-addAll",
99       "shortDoc": "<p>Adds all elements of an Array or an Object to the collection.</p>\n"
100     },
101     {
102       "tagname": "method",
103       "name": "addEvents",
104       "member": "Ext.util.Observable",
105       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
106       "params": [
107         {
108           "type": "Object/String",
109           "name": "o",
110           "doc": "<p>Either an object with event names as properties with a value of <code>true</code>\nor the first event name string if multiple event names are being passed as separate parameters.</p>\n",
111           "optional": false
112         },
113         {
114           "type": "String",
115           "name": "",
116           "doc": "<p>[additional] Optional additional event names if multiple event names are being passed as separate parameters.\nUsage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n\n",
117           "optional": false
118         }
119       ],
120       "return": {
121         "type": "void",
122         "doc": "\n"
123       },
124       "private": false,
125       "static": false,
126       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
127       "linenr": 452,
128       "html_filename": "Observable.html",
129       "href": "Observable.html#Ext-util-Observable-method-addEvents",
130       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
131     },
132     {
133       "tagname": "method",
134       "name": "addListener",
135       "member": "Ext.util.Observable",
136       "doc": "<p>Appends an event handler to this object.</p>\n",
137       "params": [
138         {
139           "type": "String",
140           "name": "eventName",
141           "doc": "<p>The name of the event to listen for. May also be an object who's property names are event names. See</p>\n",
142           "optional": false
143         },
144         {
145           "type": "Function",
146           "name": "handler",
147           "doc": "<p>The method the event invokes.</p>\n",
148           "optional": false
149         },
150         {
151           "type": "Object",
152           "name": "scope",
153           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
154           "optional": true
155         },
156         {
157           "type": "Object",
158           "name": "options",
159           "doc": "<p>(optional) An object containing handler configuration.\nproperties. This may contain any of the following properties:<ul>\n<li><b>scope</b> : Object<div class=\"sub-desc\">The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></div></li>\n<li><b>delay</b> : Number<div class=\"sub-desc\">The number of milliseconds to delay the invocation of the handler after the event fires.</div></li>\n<li><b>single</b> : Boolean<div class=\"sub-desc\">True to add a handler to handle just the next firing of the event, and then remove itself.</div></li>\n<li><b>buffer</b> : Number<div class=\"sub-desc\">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\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is <em>not</em> invoked, but the new handler is scheduled in its place.</div></li>\n<li><b>target</b> : Observable<div class=\"sub-desc\">Only call the handler if the event was fired on the target Observable, <i>not</i>\nif the event was bubbled up from a child Observable.</div></li>\n<li><b>element</b> : String<div class=\"sub-desc\"><b>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</b>\nThe name of a Component property 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 <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which\nwill exist only after the Component is rendered. For example, to add a click listener to a Panel's body:\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></p>\n\n\n<p>When added in this way, the options available are the options applicable to <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a></p>\n\n\n<p></div></li>\n</ul><br></p>\n\n<p>\n<b>Combining Options</b><br>\nUsing the options argument, it is possible to combine different types of listeners:<br>\n<br>\nA delayed, one-time listener.\n<pre><code>myPanel.on('hide', this.handleClick, this, {\nsingle: true,\ndelay: 100\n});</code></pre>\n<p>\n<b>Attaching multiple handlers in 1 call</b><br>\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple events. For example:\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<p>\n\n",
160           "optional": true
161         }
162       ],
163       "return": {
164         "type": "void",
165         "doc": "\n"
166       },
167       "private": false,
168       "static": false,
169       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
170       "linenr": 271,
171       "html_filename": "Observable.html",
172       "href": "Observable.html#Ext-util-Observable-method-addListener",
173       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
174     },
175     {
176       "tagname": "method",
177       "name": "addManagedListener",
178       "member": "Ext.util.Observable",
179       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
180       "params": [
181         {
182           "type": "Observable/Element",
183           "name": "item",
184           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
185           "optional": false
186         },
187         {
188           "type": "Object/String",
189           "name": "ename",
190           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
191           "optional": false
192         },
193         {
194           "type": "Function",
195           "name": "fn",
196           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
197           "optional": false
198         },
199         {
200           "type": "Object",
201           "name": "scope",
202           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
203           "optional": false
204         },
205         {
206           "type": "Object",
207           "name": "opt",
208           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
209           "optional": false
210         }
211       ],
212       "return": {
213         "type": "void",
214         "doc": "\n"
215       },
216       "private": false,
217       "static": false,
218       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
219       "linenr": 155,
220       "html_filename": "Observable.html",
221       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
222       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
223     },
224     {
225       "tagname": "method",
226       "name": "capture",
227       "member": "Ext.util.Observable",
228       "doc": "<p>Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
229       "params": [
230         {
231           "type": "Observable",
232           "name": "o",
233           "doc": "<p>The Observable to capture events from.</p>\n",
234           "optional": false
235         },
236         {
237           "type": "Function",
238           "name": "fn",
239           "doc": "<p>The function to call when an event is fired.</p>\n",
240           "optional": false
241         },
242         {
243           "type": "Object",
244           "name": "scope",
245           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
246           "optional": true
247         }
248       ],
249       "return": {
250         "type": "void",
251         "doc": "\n"
252       },
253       "private": false,
254       "static": true,
255       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
256       "linenr": 55,
257       "html_filename": "Observable.html",
258       "href": "Observable.html#Ext-util-Observable-method-capture",
259       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
260     },
261     {
262       "tagname": "method",
263       "name": "clear",
264       "member": "Ext.util.AbstractMixedCollection",
265       "doc": "<p>Removes all items from the collection.  Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-clear\" rel=\"Ext.util.AbstractMixedCollection-event-clear\" class=\"docClass\">clear</a> event when complete.</p>\n",
266       "params": [
267
268       ],
269       "return": {
270         "type": "void",
271         "doc": "\n"
272       },
273       "private": false,
274       "static": false,
275       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
276       "linenr": 435,
277       "html_filename": "AbstractMixedCollection.html",
278       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-clear",
279       "shortDoc": "<p>Removes all items from the collection.  Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-clear\" rel=\"Ext.util.AbstractMixedCollection-event-clear\" class=\"docClass\">clear</a> event when complete.</p>\n"
280     },
281     {
282       "tagname": "method",
283       "name": "clearListeners",
284       "member": "Ext.util.Observable",
285       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
286       "params": [
287
288       ],
289       "return": {
290         "type": "void",
291         "doc": "\n"
292       },
293       "private": false,
294       "static": false,
295       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
296       "linenr": 383,
297       "html_filename": "Observable.html",
298       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
299       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
300     },
301     {
302       "tagname": "method",
303       "name": "clearManagedListeners",
304       "member": "Ext.util.Observable",
305       "doc": "<p>Removes all managed listeners for this object.</p>\n",
306       "params": [
307
308       ],
309       "return": {
310         "type": "void",
311         "doc": "\n"
312       },
313       "private": false,
314       "static": false,
315       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
316       "linenr": 412,
317       "html_filename": "Observable.html",
318       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
319       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
320     },
321     {
322       "tagname": "method",
323       "name": "clone",
324       "member": "Ext.util.AbstractMixedCollection",
325       "doc": "<p>Creates a shallow copy of this collection</p>\n",
326       "params": [
327
328       ],
329       "return": {
330         "type": "MixedCollection",
331         "doc": "\n"
332       },
333       "private": false,
334       "static": false,
335       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
336       "linenr": 727,
337       "html_filename": "AbstractMixedCollection.html",
338       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-clone",
339       "shortDoc": "<p>Creates a shallow copy of this collection</p>\n"
340     },
341     {
342       "tagname": "method",
343       "name": "collect",
344       "member": "Ext.util.AbstractMixedCollection",
345       "doc": "<p>Collects unique values of a particular property in this MixedCollection</p>\n",
346       "params": [
347         {
348           "type": "String",
349           "name": "property",
350           "doc": "<p>The property to collect on</p>\n",
351           "optional": false
352         },
353         {
354           "type": "String",
355           "name": "root",
356           "doc": "<p>Optional 'root' property to extract the first argument from. This is used mainly when\nsumming fields in records, where the fields are all stored inside the 'data' object</p>\n",
357           "optional": false
358         },
359         {
360           "type": "Boolean",
361           "name": "allowBlank",
362           "doc": "<p>(optional) Pass true to allow null, undefined or empty string values</p>\n",
363           "optional": true
364         }
365       ],
366       "return": {
367         "type": "Array",
368         "doc": "<p>The unique values</p>\n"
369       },
370       "private": false,
371       "static": false,
372       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
373       "linenr": 489,
374       "html_filename": "AbstractMixedCollection.html",
375       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-collect",
376       "shortDoc": "<p>Collects unique values of a particular property in this MixedCollection</p>\n"
377     },
378     {
379       "tagname": "method",
380       "name": "contains",
381       "member": "Ext.util.AbstractMixedCollection",
382       "doc": "<p>Returns true if the collection contains the passed Object as an item.</p>\n",
383       "params": [
384         {
385           "type": "Object",
386           "name": "o",
387           "doc": "<p>The Object to look for in the collection.</p>\n",
388           "optional": false
389         }
390       ],
391       "return": {
392         "type": "Boolean",
393         "doc": "<p>True if the collection contains the Object as an item.</p>\n"
394       },
395       "private": false,
396       "static": false,
397       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
398       "linenr": 417,
399       "html_filename": "AbstractMixedCollection.html",
400       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-contains",
401       "shortDoc": "<p>Returns true if the collection contains the passed Object as an item.</p>\n"
402     },
403     {
404       "tagname": "method",
405       "name": "containsKey",
406       "member": "Ext.util.AbstractMixedCollection",
407       "doc": "<p>Returns true if the collection contains the passed Object as a key.</p>\n",
408       "params": [
409         {
410           "type": "String",
411           "name": "key",
412           "doc": "<p>The key to look for in the collection.</p>\n",
413           "optional": false
414         }
415       ],
416       "return": {
417         "type": "Boolean",
418         "doc": "<p>True if the collection contains the Object as a key.</p>\n"
419       },
420       "private": false,
421       "static": false,
422       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
423       "linenr": 426,
424       "html_filename": "AbstractMixedCollection.html",
425       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-containsKey",
426       "shortDoc": "<p>Returns true if the collection contains the passed Object as a key.</p>\n"
427     },
428     {
429       "tagname": "method",
430       "name": "each",
431       "member": "Ext.util.AbstractMixedCollection",
432       "doc": "<p>Executes the specified function once for every item in the collection, passing the following arguments:</p>\n\n<div class=\"mdetail-params\"><ul>\n<li><b>item</b> : Mixed<p class=\"sub-desc\">The collection item</p></li>\n<li><b>index</b> : Number<p class=\"sub-desc\">The item's index</p></li>\n<li><b>length</b> : Number<p class=\"sub-desc\">The total number of items in the collection</p></li>\n</ul></div>\n\n\n<p>The function should return a boolean value. Returning false from the function will stop the iteration.</p>\n",
433       "params": [
434         {
435           "type": "Function",
436           "name": "fn",
437           "doc": "<p>The function to execute for each item.</p>\n",
438           "optional": false
439         },
440         {
441           "type": "Object",
442           "name": "scope",
443           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the current item in the iteration.</p>\n",
444           "optional": true
445         }
446       ],
447       "return": {
448         "type": "void",
449         "doc": "\n"
450       },
451       "private": false,
452       "static": false,
453       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
454       "linenr": 196,
455       "html_filename": "AbstractMixedCollection.html",
456       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-each",
457       "shortDoc": "Executes the specified function once for every item in the collection, passing the following arguments:\n\n\nitem : Mixe..."
458     },
459     {
460       "tagname": "method",
461       "name": "eachKey",
462       "member": "Ext.util.AbstractMixedCollection",
463       "doc": "<p>Executes the specified function once for every key in the collection, passing each\nkey, and its associated item as the first two parameters.</p>\n",
464       "params": [
465         {
466           "type": "Function",
467           "name": "fn",
468           "doc": "<p>The function to execute for each item.</p>\n",
469           "optional": false
470         },
471         {
472           "type": "Object",
473           "name": "scope",
474           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the browser window.</p>\n",
475           "optional": true
476         }
477       ],
478       "return": {
479         "type": "void",
480         "doc": "\n"
481       },
482       "private": false,
483       "static": false,
484       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
485       "linenr": 221,
486       "html_filename": "AbstractMixedCollection.html",
487       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-eachKey",
488       "shortDoc": "Executes the specified function once for every key in the collection, passing each\nkey, and its associated item as th..."
489     },
490     {
491       "tagname": "method",
492       "name": "enableBubble",
493       "member": "Ext.util.Observable",
494       "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling\n<code>this.getBubbleTarget()</code> if present. There is no implementation in the Observable base class.</p>\n\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers. See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default\nimplementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the Component's immediate owner. But if a known target is required, this can be overridden to\naccess the required target more quickly.</p>\n\n\n<p>Example:</p>\n\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n//  Add functionality to Field&#39;s initComponent to enable the change event to bubble\ninitComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n    this.enableBubble('change');\n}),\n\n//  We know that we want Field&#39;s events to bubble directly to the FormPanel.\ngetBubbleTarget : function() {\n    if (!this.formPanel) {\n        this.formPanel = this.findParentByType('form');\n    }\n    return this.formPanel;\n}\n});\n\nvar myForm = new Ext.formPanel({\ntitle: 'User Details',\nitems: [{\n    ...\n}],\nlisteners: {\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\n",
495       "params": [
496         {
497           "type": "String/Array",
498           "name": "events",
499           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
500           "optional": false
501         }
502       ],
503       "return": {
504         "type": "void",
505         "doc": "\n"
506       },
507       "private": false,
508       "static": false,
509       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
510       "linenr": 554,
511       "html_filename": "Observable.html",
512       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
513       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
514     },
515     {
516       "tagname": "method",
517       "name": "filter",
518       "member": "Ext.util.AbstractMixedCollection",
519       "doc": "<p>Filters the objects in this collection by a set of <a href=\"#/api/Ext.util.Filter\" rel=\"Ext.util.Filter\" class=\"docClass\">Filter</a>s, or by a single\nproperty/value pair with optional parameters for substring matching and case sensitivity. See\n<a href=\"#/api/Ext.util.Filter\" rel=\"Ext.util.Filter\" class=\"docClass\">Filter</a> for an example of using Filter objects (preferred). Alternatively,\nMixedCollection can be easily filtered by property like this:</p>\n\n\n<pre><code>//create a simple store with a few people defined\nvar people = new Ext.util.MixedCollection();\npeople.addAll([\n    {id: 1, age: 25, name: 'Ed'},\n    {id: 2, age: 24, name: 'Tommy'},\n    {id: 3, age: 24, name: 'Arne'},\n    {id: 4, age: 26, name: 'Aaron'}\n]);\n\n//a new MixedCollection containing only the items where age == 24\nvar middleAged = people.filter('age', 24);\n</code></pre>\n\n",
520       "params": [
521         {
522           "type": "Array/String",
523           "name": "property",
524           "doc": "<p>A property on your objects, or an array of <a href=\"#/api/Ext.util.Filter\" rel=\"Ext.util.Filter\" class=\"docClass\">Filter</a> objects</p>\n",
525           "optional": false
526         },
527         {
528           "type": "String/RegExp",
529           "name": "value",
530           "doc": "<p>Either string that the property values\nshould start with or a RegExp to test against the property</p>\n",
531           "optional": false
532         },
533         {
534           "type": "Boolean",
535           "name": "anyMatch",
536           "doc": "<p>(optional) True to match any part of the string, not just the beginning</p>\n",
537           "optional": true
538         },
539         {
540           "type": "Boolean",
541           "name": "caseSensitive",
542           "doc": "<p>(optional) True for case sensitive comparison (defaults to False).</p>\n",
543           "optional": true
544         }
545       ],
546       "return": {
547         "type": "MixedCollection",
548         "doc": "<p>The new filtered collection</p>\n"
549       },
550       "private": false,
551       "static": false,
552       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
553       "linenr": 566,
554       "html_filename": "AbstractMixedCollection.html",
555       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-filter",
556       "shortDoc": "Filters the objects in this collection by a set of Filters, or by a single\nproperty/value pair with optional paramete..."
557     },
558     {
559       "tagname": "method",
560       "name": "filterBy",
561       "member": "Ext.util.AbstractMixedCollection",
562       "doc": "<p>Filter by a function. Returns a <i>new</i> collection that has been filtered.\nThe passed function will be called with each object in the collection.\nIf the function returns true, the value is included otherwise it is filtered.</p>\n",
563       "params": [
564         {
565           "type": "Function",
566           "name": "fn",
567           "doc": "<p>The function to be called, it will receive the args o (the object), k (the key)</p>\n",
568           "optional": false
569         },
570         {
571           "type": "Object",
572           "name": "scope",
573           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this MixedCollection.</p>\n",
574           "optional": true
575         }
576       ],
577       "return": {
578         "type": "MixedCollection",
579         "doc": "<p>The new filtered collection</p>\n"
580       },
581       "private": false,
582       "static": false,
583       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
584       "linenr": 630,
585       "html_filename": "AbstractMixedCollection.html",
586       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-filterBy",
587       "shortDoc": "Filter by a function. Returns a new collection that has been filtered.\nThe passed function will be called with each o..."
588     },
589     {
590       "tagname": "method",
591       "name": "findBy",
592       "member": "Ext.util.AbstractMixedCollection",
593       "doc": "<p>Returns the first item in the collection which elicits a true return value from the\npassed selection function.</p>\n",
594       "params": [
595         {
596           "type": "Function",
597           "name": "fn",
598           "doc": "<p>The selection function to execute for each item.</p>\n",
599           "optional": false
600         },
601         {
602           "type": "Object",
603           "name": "scope",
604           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the browser window.</p>\n",
605           "optional": true
606         }
607       ],
608       "return": {
609         "type": "Object",
610         "doc": "<p>The first item in the collection which returned true from the selection function.</p>\n"
611       },
612       "private": false,
613       "static": false,
614       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
615       "linenr": 238,
616       "html_filename": "AbstractMixedCollection.html",
617       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-findBy",
618       "shortDoc": "<p>Returns the first item in the collection which elicits a true return value from the\npassed selection function.</p>\n"
619     },
620     {
621       "tagname": "method",
622       "name": "findIndex",
623       "member": "Ext.util.AbstractMixedCollection",
624       "doc": "<p>Finds the index of the first matching object in this collection by a specific property/value.</p>\n",
625       "params": [
626         {
627           "type": "String",
628           "name": "property",
629           "doc": "<p>The name of a property on your objects.</p>\n",
630           "optional": false
631         },
632         {
633           "type": "String/RegExp",
634           "name": "value",
635           "doc": "<p>A string that the property values\nshould start with or a RegExp to test against the property.</p>\n",
636           "optional": false
637         },
638         {
639           "type": "Number",
640           "name": "start",
641           "doc": "<p>(optional) The index to start searching at (defaults to 0).</p>\n",
642           "optional": true
643         },
644         {
645           "type": "Boolean",
646           "name": "anyMatch",
647           "doc": "<p>(optional) True to match any part of the string, not just the beginning.</p>\n",
648           "optional": true
649         },
650         {
651           "type": "Boolean",
652           "name": "caseSensitive",
653           "doc": "<p>(optional) True for case sensitive comparison.</p>\n",
654           "optional": true
655         }
656       ],
657       "return": {
658         "type": "Number",
659         "doc": "<p>The matched index or -1</p>\n"
660       },
661       "private": false,
662       "static": false,
663       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
664       "linenr": 657,
665       "html_filename": "AbstractMixedCollection.html",
666       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-findIndex",
667       "shortDoc": "<p>Finds the index of the first matching object in this collection by a specific property/value.</p>\n"
668     },
669     {
670       "tagname": "method",
671       "name": "findIndexBy",
672       "member": "Ext.util.AbstractMixedCollection",
673       "doc": "<p>Find the index of the first matching object in this collection by a function.\nIf the function returns <i>true</i> it is considered a match.</p>\n",
674       "params": [
675         {
676           "type": "Function",
677           "name": "fn",
678           "doc": "<p>The function to be called, it will receive the args o (the object), k (the key).</p>\n",
679           "optional": false
680         },
681         {
682           "type": "Object",
683           "name": "scope",
684           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this MixedCollection.</p>\n",
685           "optional": true
686         },
687         {
688           "type": "Number",
689           "name": "start",
690           "doc": "<p>(optional) The index to start searching at (defaults to 0).</p>\n",
691           "optional": true
692         }
693       ],
694       "return": {
695         "type": "Number",
696         "doc": "<p>The matched index or -1</p>\n"
697       },
698       "private": false,
699       "static": false,
700       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
701       "linenr": 677,
702       "html_filename": "AbstractMixedCollection.html",
703       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-findIndexBy",
704       "shortDoc": "Find the index of the first matching object in this collection by a function.\nIf the function returns true it is cons..."
705     },
706     {
707       "tagname": "method",
708       "name": "fireEvent",
709       "member": "Ext.util.Observable",
710       "doc": "<p>Fires the specified event with the passed parameters (minus the event name).</p>\n\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>)\nby calling <a href=\"#/api/Ext.util.AbstractMixedCollection-method-enableBubble\" rel=\"Ext.util.AbstractMixedCollection-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
711       "params": [
712         {
713           "type": "String",
714           "name": "eventName",
715           "doc": "<p>The name of the event to fire.</p>\n",
716           "optional": false
717         },
718         {
719           "type": "Object...",
720           "name": "args",
721           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
722           "optional": false
723         }
724       ],
725       "return": {
726         "type": "Boolean",
727         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
728       },
729       "private": false,
730       "static": false,
731       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
732       "linenr": 232,
733       "html_filename": "Observable.html",
734       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
735       "shortDoc": "Fires the specified event with the passed parameters (minus the event name).\n\n\nAn event may be set to bubble up an Ob..."
736     },
737     {
738       "tagname": "method",
739       "name": "first",
740       "member": "Ext.util.AbstractMixedCollection",
741       "doc": "<p>Returns the first item in the collection.</p>\n",
742       "params": [
743
744       ],
745       "return": {
746         "type": "Object",
747         "doc": "<p>the first item in the collection..</p>\n"
748       },
749       "private": false,
750       "static": false,
751       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
752       "linenr": 448,
753       "html_filename": "AbstractMixedCollection.html",
754       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-first",
755       "shortDoc": "<p>Returns the first item in the collection.</p>\n"
756     },
757     {
758       "tagname": "method",
759       "name": "get",
760       "member": "Ext.util.AbstractMixedCollection",
761       "doc": "<p>Returns the item associated with the passed key OR index.\nKey has priority over index.  This is the equivalent\nof calling <a href=\"#/api/Ext.util.AbstractMixedCollection--key\" rel=\"Ext.util.AbstractMixedCollection--key\" class=\"docClass\">key</a> first, then if nothing matched calling <a href=\"#/api/Ext.util.AbstractMixedCollection-method-getAt\" rel=\"Ext.util.AbstractMixedCollection-method-getAt\" class=\"docClass\">getAt</a>.</p>\n",
762       "params": [
763         {
764           "type": "String/Number",
765           "name": "key",
766           "doc": "<p>The key or index of the item.</p>\n",
767           "optional": false
768         }
769       ],
770       "return": {
771         "type": "Object",
772         "doc": "<p>If the item is found, returns the item.  If the item was not found, returns <tt>undefined</tt>.\nIf an item was found, but is a Class, returns <tt>null</tt>.</p>\n"
773       },
774       "private": false,
775       "static": false,
776       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
777       "linenr": 384,
778       "html_filename": "AbstractMixedCollection.html",
779       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-get",
780       "shortDoc": "Returns the item associated with the passed key OR index.\nKey has priority over index.  This is the equivalent\nof cal..."
781     },
782     {
783       "tagname": "method",
784       "name": "getAt",
785       "member": "Ext.util.AbstractMixedCollection",
786       "doc": "<p>Returns the item at the specified index.</p>\n",
787       "params": [
788         {
789           "type": "Number",
790           "name": "index",
791           "doc": "<p>The index of the item.</p>\n",
792           "optional": false
793         }
794       ],
795       "return": {
796         "type": "Object",
797         "doc": "<p>The item at the specified index.</p>\n"
798       },
799       "private": false,
800       "static": false,
801       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
802       "linenr": 399,
803       "html_filename": "AbstractMixedCollection.html",
804       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getAt",
805       "shortDoc": "<p>Returns the item at the specified index.</p>\n"
806     },
807     {
808       "tagname": "method",
809       "name": "getByKey",
810       "member": "Ext.util.AbstractMixedCollection",
811       "doc": "<p>Returns the item associated with the passed key.</p>\n",
812       "params": [
813         {
814           "type": "String/Number",
815           "name": "key",
816           "doc": "<p>The key of the item.</p>\n",
817           "optional": false
818         }
819       ],
820       "return": {
821         "type": "Object",
822         "doc": "<p>The item associated with the passed key.</p>\n"
823       },
824       "private": false,
825       "static": false,
826       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
827       "linenr": 408,
828       "html_filename": "AbstractMixedCollection.html",
829       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getByKey",
830       "shortDoc": "<p>Returns the item associated with the passed key.</p>\n"
831     },
832     {
833       "tagname": "method",
834       "name": "getCount",
835       "member": "Ext.util.AbstractMixedCollection",
836       "doc": "<p>Returns the number of items in the collection.</p>\n",
837       "params": [
838
839       ],
840       "return": {
841         "type": "Number",
842         "doc": "<p>the number of items in the collection.</p>\n"
843       },
844       "private": false,
845       "static": false,
846       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
847       "linenr": 358,
848       "html_filename": "AbstractMixedCollection.html",
849       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getCount",
850       "shortDoc": "<p>Returns the number of items in the collection.</p>\n"
851     },
852     {
853       "tagname": "method",
854       "name": "getKey",
855       "member": "Ext.util.AbstractMixedCollection",
856       "doc": "<p>MixedCollection has a generic way to fetch keys if you implement getKey.  The default implementation\nsimply returns <b><code>item.id</code></b> but you can provide your own implementation\nto return a different value as in the following examples:</p>\n\n<pre><code>// normal way\nvar mc = new Ext.util.MixedCollection();\nmc.add(someEl.dom.id, someEl);\nmc.add(otherEl.dom.id, otherEl);\n//and so on\n\n// using getKey\nvar mc = new Ext.util.MixedCollection();\nmc.getKey = function(el){\n   return el.dom.id;\n};\nmc.add(someEl);\nmc.add(otherEl);\n\n// or via the constructor\nvar mc = new Ext.util.MixedCollection(false, function(el){\n   return el.dom.id;\n});\nmc.add(someEl);\nmc.add(otherEl);\n</code></pre>\n\n",
857       "params": [
858         {
859           "type": "Object",
860           "name": "item",
861           "doc": "<p>The item for which to find the key.</p>\n",
862           "optional": false
863         }
864       ],
865       "return": {
866         "type": "Object",
867         "doc": "<p>The key for the passed item.</p>\n"
868       },
869       "private": false,
870       "static": false,
871       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
872       "linenr": 103,
873       "html_filename": "AbstractMixedCollection.html",
874       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getKey",
875       "shortDoc": "MixedCollection has a generic way to fetch keys if you implement getKey.  The default implementation\nsimply returns i..."
876     },
877     {
878       "tagname": "method",
879       "name": "getRange",
880       "member": "Ext.util.AbstractMixedCollection",
881       "doc": "<p>Returns a range of items in this collection</p>\n",
882       "params": [
883         {
884           "type": "Number",
885           "name": "startIndex",
886           "doc": "<p>(optional) The starting index. Defaults to 0.</p>\n",
887           "optional": true
888         },
889         {
890           "type": "Number",
891           "name": "endIndex",
892           "doc": "<p>(optional) The ending index. Defaults to the last item.</p>\n",
893           "optional": true
894         }
895       ],
896       "return": {
897         "type": "Array",
898         "doc": "<p>An array of items</p>\n"
899       },
900       "private": false,
901       "static": false,
902       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
903       "linenr": 536,
904       "html_filename": "AbstractMixedCollection.html",
905       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getRange",
906       "shortDoc": "<p>Returns a range of items in this collection</p>\n"
907     },
908     {
909       "tagname": "method",
910       "name": "hasListener",
911       "member": "Ext.util.Observable",
912       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
913       "params": [
914         {
915           "type": "String",
916           "name": "eventName",
917           "doc": "<p>The name of the event to check for</p>\n",
918           "optional": false
919         }
920       ],
921       "return": {
922         "type": "Boolean",
923         "doc": "<p>True if the event is being listened for, else false</p>\n"
924       },
925       "private": false,
926       "static": false,
927       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
928       "linenr": 480,
929       "html_filename": "Observable.html",
930       "href": "Observable.html#Ext-util-Observable-method-hasListener",
931       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
932     },
933     {
934       "tagname": "method",
935       "name": "indexOf",
936       "member": "Ext.util.AbstractMixedCollection",
937       "doc": "<p>Returns index within the collection of the passed Object.</p>\n",
938       "params": [
939         {
940           "type": "Object",
941           "name": "o",
942           "doc": "<p>The item to find the index of.</p>\n",
943           "optional": false
944         }
945       ],
946       "return": {
947         "type": "Number",
948         "doc": "<p>index of the item. Returns -1 if not found.</p>\n"
949       },
950       "private": false,
951       "static": false,
952       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
953       "linenr": 366,
954       "html_filename": "AbstractMixedCollection.html",
955       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-indexOf",
956       "shortDoc": "<p>Returns index within the collection of the passed Object.</p>\n"
957     },
958     {
959       "tagname": "method",
960       "name": "indexOfKey",
961       "member": "Ext.util.AbstractMixedCollection",
962       "doc": "<p>Returns index within the collection of the passed key.</p>\n",
963       "params": [
964         {
965           "type": "String",
966           "name": "key",
967           "doc": "<p>The key to find the index of.</p>\n",
968           "optional": false
969         }
970       ],
971       "return": {
972         "type": "Number",
973         "doc": "<p>index of the key.</p>\n"
974       },
975       "private": false,
976       "static": false,
977       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
978       "linenr": 375,
979       "html_filename": "AbstractMixedCollection.html",
980       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-indexOfKey",
981       "shortDoc": "<p>Returns index within the collection of the passed key.</p>\n"
982     },
983     {
984       "tagname": "method",
985       "name": "insert",
986       "member": "Ext.util.AbstractMixedCollection",
987       "doc": "<p>Inserts an item at the specified index in the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-add\" rel=\"Ext.util.AbstractMixedCollection-event-add\" class=\"docClass\">add</a> event when complete.</p>\n",
988       "params": [
989         {
990           "type": "Number",
991           "name": "index",
992           "doc": "<p>The index to insert the item at.</p>\n",
993           "optional": false
994         },
995         {
996           "type": "String",
997           "name": "key",
998           "doc": "<p>The key to associate with the new item, or the item itself.</p>\n",
999           "optional": false
1000         },
1001         {
1002           "type": "Object",
1003           "name": "o",
1004           "doc": "<p>(optional) If the second parameter was a key, the new item.</p>\n",
1005           "optional": true
1006         }
1007       ],
1008       "return": {
1009         "type": "Object",
1010         "doc": "<p>The item inserted.</p>\n"
1011       },
1012       "private": false,
1013       "static": false,
1014       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1015       "linenr": 268,
1016       "html_filename": "AbstractMixedCollection.html",
1017       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-insert",
1018       "shortDoc": "<p>Inserts an item at the specified index in the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-add\" rel=\"Ext.util.AbstractMixedCollection-event-add\" class=\"docClass\">add</a> event when complete.</p>\n"
1019     },
1020     {
1021       "tagname": "method",
1022       "name": "last",
1023       "member": "Ext.util.AbstractMixedCollection",
1024       "doc": "<p>Returns the last item in the collection.</p>\n",
1025       "params": [
1026
1027       ],
1028       "return": {
1029         "type": "Object",
1030         "doc": "<p>the last item in the collection..</p>\n"
1031       },
1032       "private": false,
1033       "static": false,
1034       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1035       "linenr": 456,
1036       "html_filename": "AbstractMixedCollection.html",
1037       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-last",
1038       "shortDoc": "<p>Returns the last item in the collection.</p>\n"
1039     },
1040     {
1041       "tagname": "method",
1042       "name": "observe",
1043       "member": "Ext.util.Observable",
1044       "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",
1045       "params": [
1046         {
1047           "type": "Function",
1048           "name": "c",
1049           "doc": "<p>The class constructor to make observable.</p>\n",
1050           "optional": false
1051         },
1052         {
1053           "type": "Object",
1054           "name": "listeners",
1055           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.util.AbstractMixedCollection-method-addListener\" rel=\"Ext.util.AbstractMixedCollection-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
1056           "optional": false
1057         }
1058       ],
1059       "return": {
1060         "type": "void",
1061         "doc": "\n"
1062       },
1063       "private": false,
1064       "static": true,
1065       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1066       "linenr": 69,
1067       "html_filename": "Observable.html",
1068       "href": "Observable.html#Ext-util-Observable-method-observe",
1069       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
1070     },
1071     {
1072       "tagname": "method",
1073       "name": "on",
1074       "member": "Ext.util.Observable",
1075       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.util.AbstractMixedCollection-method-addListener\" rel=\"Ext.util.AbstractMixedCollection-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
1076       "params": [
1077         {
1078           "type": "String",
1079           "name": "eventName",
1080           "doc": "<p>The type of event to listen for</p>\n",
1081           "optional": false
1082         },
1083         {
1084           "type": "Function",
1085           "name": "handler",
1086           "doc": "<p>The method the event invokes</p>\n",
1087           "optional": false
1088         },
1089         {
1090           "type": "Object",
1091           "name": "scope",
1092           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
1093           "optional": true
1094         },
1095         {
1096           "type": "Object",
1097           "name": "options",
1098           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
1099           "optional": true
1100         }
1101       ],
1102       "return": {
1103         "type": "void",
1104         "doc": "\n"
1105       },
1106       "private": false,
1107       "static": false,
1108       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1109       "linenr": 616,
1110       "html_filename": "Observable.html",
1111       "href": "Observable.html#Ext-util-Observable-method-on",
1112       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.util.AbstractMixedCollection-method-addListener\" rel=\"Ext.util.AbstractMixedCollection-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
1113     },
1114     {
1115       "tagname": "method",
1116       "name": "relayEvents",
1117       "member": "Ext.util.Observable",
1118       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
1119       "params": [
1120         {
1121           "type": "Object",
1122           "name": "origin",
1123           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1124           "optional": false
1125         },
1126         {
1127           "type": "Array",
1128           "name": "events",
1129           "doc": "<p>Array of event names to relay.</p>\n",
1130           "optional": false
1131         },
1132         {
1133           "type": "Object",
1134           "name": "prefix",
1135           "doc": "\n",
1136           "optional": false
1137         }
1138       ],
1139       "return": {
1140         "type": "void",
1141         "doc": "\n"
1142       },
1143       "private": false,
1144       "static": false,
1145       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1146       "linenr": 520,
1147       "html_filename": "Observable.html",
1148       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1149       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
1150     },
1151     {
1152       "tagname": "method",
1153       "name": "releaseCapture",
1154       "member": "Ext.util.Observable",
1155       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
1156       "params": [
1157         {
1158           "type": "Observable",
1159           "name": "o",
1160           "doc": "<p>The Observable to release</p>\n",
1161           "optional": false
1162         }
1163       ],
1164       "return": {
1165         "type": "void",
1166         "doc": "\n"
1167       },
1168       "private": false,
1169       "static": true,
1170       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1171       "linenr": 46,
1172       "html_filename": "Observable.html",
1173       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1174       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
1175     },
1176     {
1177       "tagname": "method",
1178       "name": "remove",
1179       "member": "Ext.util.AbstractMixedCollection",
1180       "doc": "<p>Remove an item from the collection.</p>\n",
1181       "params": [
1182         {
1183           "type": "Object",
1184           "name": "o",
1185           "doc": "<p>The item to remove.</p>\n",
1186           "optional": false
1187         }
1188       ],
1189       "return": {
1190         "type": "Object",
1191         "doc": "<p>The item removed or false if no item was removed.</p>\n"
1192       },
1193       "private": false,
1194       "static": false,
1195       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1196       "linenr": 302,
1197       "html_filename": "AbstractMixedCollection.html",
1198       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-remove",
1199       "shortDoc": "<p>Remove an item from the collection.</p>\n"
1200     },
1201     {
1202       "tagname": "method",
1203       "name": "removeAll",
1204       "member": "Ext.util.AbstractMixedCollection",
1205       "doc": "<p>Remove all items in the passed array from the collection.</p>\n",
1206       "params": [
1207         {
1208           "type": "Array",
1209           "name": "items",
1210           "doc": "<p>An array of items to be removed.</p>\n",
1211           "optional": false
1212         }
1213       ],
1214       "return": {
1215         "type": "Ext.util.MixedCollection",
1216         "doc": "<p>this object</p>\n"
1217       },
1218       "private": false,
1219       "static": false,
1220       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1221       "linenr": 311,
1222       "html_filename": "AbstractMixedCollection.html",
1223       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-removeAll",
1224       "shortDoc": "<p>Remove all items in the passed array from the collection.</p>\n"
1225     },
1226     {
1227       "tagname": "method",
1228       "name": "removeAt",
1229       "member": "Ext.util.AbstractMixedCollection",
1230       "doc": "<p>Remove an item from a specified index in the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-remove\" rel=\"Ext.util.AbstractMixedCollection-event-remove\" class=\"docClass\">remove</a> event when complete.</p>\n",
1231       "params": [
1232         {
1233           "type": "Number",
1234           "name": "index",
1235           "doc": "<p>The index within the collection of the item to remove.</p>\n",
1236           "optional": false
1237         }
1238       ],
1239       "return": {
1240         "type": "Object",
1241         "doc": "<p>The item removed or false if no item was removed.</p>\n"
1242       },
1243       "private": false,
1244       "static": false,
1245       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1246       "linenr": 324,
1247       "html_filename": "AbstractMixedCollection.html",
1248       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-removeAt",
1249       "shortDoc": "<p>Remove an item from a specified index in the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-remove\" rel=\"Ext.util.AbstractMixedCollection-event-remove\" class=\"docClass\">remove</a> event when complete.</p>\n"
1250     },
1251     {
1252       "tagname": "method",
1253       "name": "removeAtKey",
1254       "member": "Ext.util.AbstractMixedCollection",
1255       "doc": "<p>Removed an item associated with the passed key fom the collection.</p>\n",
1256       "params": [
1257         {
1258           "type": "String",
1259           "name": "key",
1260           "doc": "<p>The key of the item to remove.</p>\n",
1261           "optional": false
1262         }
1263       ],
1264       "return": {
1265         "type": "Object",
1266         "doc": "<p>The item removed or false if no item was removed.</p>\n"
1267       },
1268       "private": false,
1269       "static": false,
1270       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1271       "linenr": 349,
1272       "html_filename": "AbstractMixedCollection.html",
1273       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-removeAtKey",
1274       "shortDoc": "<p>Removed an item associated with the passed key fom the collection.</p>\n"
1275     },
1276     {
1277       "tagname": "method",
1278       "name": "removeListener",
1279       "member": "Ext.util.Observable",
1280       "doc": "<p>Removes an event handler.</p>\n",
1281       "params": [
1282         {
1283           "type": "String",
1284           "name": "eventName",
1285           "doc": "<p>The type of event the handler was associated with.</p>\n",
1286           "optional": false
1287         },
1288         {
1289           "type": "Function",
1290           "name": "handler",
1291           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.util.AbstractMixedCollection-method-addListener\" rel=\"Ext.util.AbstractMixedCollection-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
1292           "optional": false
1293         },
1294         {
1295           "type": "Object",
1296           "name": "scope",
1297           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1298           "optional": true
1299         }
1300       ],
1301       "return": {
1302         "type": "void",
1303         "doc": "\n"
1304       },
1305       "private": false,
1306       "static": false,
1307       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1308       "linenr": 352,
1309       "html_filename": "Observable.html",
1310       "href": "Observable.html#Ext-util-Observable-method-removeListener",
1311       "shortDoc": "<p>Removes an event handler.</p>\n"
1312     },
1313     {
1314       "tagname": "method",
1315       "name": "removeManagedListener",
1316       "member": "Ext.util.Observable",
1317       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.util.AbstractMixedCollection--mon\" rel=\"Ext.util.AbstractMixedCollection--mon\" class=\"docClass\">mon</a> method.</p>\n",
1318       "params": [
1319         {
1320           "type": "Observable|Element",
1321           "name": "item",
1322           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1323           "optional": false
1324         },
1325         {
1326           "type": "Object|String",
1327           "name": "ename",
1328           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1329           "optional": false
1330         },
1331         {
1332           "type": "Function",
1333           "name": "fn",
1334           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
1335           "optional": false
1336         },
1337         {
1338           "type": "Object",
1339           "name": "scope",
1340           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
1341           "optional": false
1342         }
1343       ],
1344       "return": {
1345         "type": "void",
1346         "doc": "\n"
1347       },
1348       "private": false,
1349       "static": false,
1350       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1351       "linenr": 196,
1352       "html_filename": "Observable.html",
1353       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1354       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.util.AbstractMixedCollection--mon\" rel=\"Ext.util.AbstractMixedCollection--mon\" class=\"docClass\">mon</a> method.</p>\n"
1355     },
1356     {
1357       "tagname": "method",
1358       "name": "replace",
1359       "member": "Ext.util.AbstractMixedCollection",
1360       "doc": "<p>Replaces an item in the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-replace\" rel=\"Ext.util.AbstractMixedCollection-event-replace\" class=\"docClass\">replace</a> event when complete.</p>\n",
1361       "params": [
1362         {
1363           "type": "String",
1364           "name": "key",
1365           "doc": "<p>The key associated with the item to replace, or the replacement item.</p>\n\n\n<p>If you supplied a <a href=\"#/api/Ext.util.AbstractMixedCollection-method-getKey\" rel=\"Ext.util.AbstractMixedCollection-method-getKey\" class=\"docClass\">getKey</a> implementation for this MixedCollection, or if the key\nof your stored items is in a property called <tt><b>id</b></tt>, then the MixedCollection\nwill be able to <i>derive</i> the key of the replacement item. If you want to replace an item\nwith one having the same key value, then just pass the replacement item in this parameter.</p>\n\n",
1366           "optional": false
1367         },
1368         {
1369           "type": "Object",
1370           "name": "o",
1371           "doc": "<p>{Object} o (optional) If the first parameter passed was a key, the item to associate\nwith that key.</p>\n",
1372           "optional": true
1373         }
1374       ],
1375       "return": {
1376         "type": "Object",
1377         "doc": "<p>The new item.</p>\n"
1378       },
1379       "private": false,
1380       "static": false,
1381       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1382       "linenr": 135,
1383       "html_filename": "AbstractMixedCollection.html",
1384       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-replace",
1385       "shortDoc": "<p>Replaces an item in the collection. Fires the <a href=\"#/api/Ext.util.AbstractMixedCollection-event-replace\" rel=\"Ext.util.AbstractMixedCollection-event-replace\" class=\"docClass\">replace</a> event when complete.</p>\n"
1386     },
1387     {
1388       "tagname": "method",
1389       "name": "resumeEvents",
1390       "member": "Ext.util.Observable",
1391       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.util.AbstractMixedCollection-method-suspendEvents\" rel=\"Ext.util.AbstractMixedCollection-method-suspendEvents\" class=\"docClass\">suspendEvents</a>)\nIf events were suspended using the <code><b>queueSuspended</b></code> parameter, then all\nevents fired during event suspension will be sent to any listeners now.</p>\n",
1392       "params": [
1393
1394       ],
1395       "return": {
1396         "type": "void",
1397         "doc": "\n"
1398       },
1399       "private": false,
1400       "static": false,
1401       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1402       "linenr": 502,
1403       "html_filename": "Observable.html",
1404       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1405       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
1406     },
1407     {
1408       "tagname": "method",
1409       "name": "sum",
1410       "member": "Ext.util.AbstractMixedCollection",
1411       "doc": "<p>Collects all of the values of the given property and returns their sum</p>\n",
1412       "params": [
1413         {
1414           "type": "String",
1415           "name": "property",
1416           "doc": "<p>The property to sum by</p>\n",
1417           "optional": false
1418         },
1419         {
1420           "type": "String",
1421           "name": "root",
1422           "doc": "<p>Optional 'root' property to extract the first argument from. This is used mainly when\nsumming fields in records, where the fields are all stored inside the 'data' object</p>\n",
1423           "optional": false
1424         },
1425         {
1426           "type": "Number",
1427           "name": "start",
1428           "doc": "<p>(optional) The record index to start at (defaults to <tt>0</tt>)</p>\n",
1429           "optional": true
1430         },
1431         {
1432           "type": "Number",
1433           "name": "end",
1434           "doc": "<p>(optional) The record index to end at (defaults to <tt>-1</tt>)</p>\n",
1435           "optional": true
1436         }
1437       ],
1438       "return": {
1439         "type": "Number",
1440         "doc": "<p>The total</p>\n"
1441       },
1442       "private": false,
1443       "static": false,
1444       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1445       "linenr": 464,
1446       "html_filename": "AbstractMixedCollection.html",
1447       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-sum",
1448       "shortDoc": "<p>Collects all of the values of the given property and returns their sum</p>\n"
1449     },
1450     {
1451       "tagname": "method",
1452       "name": "suspendEvents",
1453       "member": "Ext.util.Observable",
1454       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.util.AbstractMixedCollection-method-resumeEvents\" rel=\"Ext.util.AbstractMixedCollection-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1455       "params": [
1456         {
1457           "type": "Boolean",
1458           "name": "queueSuspended",
1459           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.util.AbstractMixedCollection-method-resumeEvents\" rel=\"Ext.util.AbstractMixedCollection-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
1460           "optional": false
1461         }
1462       ],
1463       "return": {
1464         "type": "void",
1465         "doc": "\n"
1466       },
1467       "private": false,
1468       "static": false,
1469       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1470       "linenr": 490,
1471       "html_filename": "Observable.html",
1472       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1473       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.util.AbstractMixedCollection-method-resumeEvents\" rel=\"Ext.util.AbstractMixedCollection-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
1474     },
1475     {
1476       "tagname": "method",
1477       "name": "un",
1478       "member": "Ext.util.Observable",
1479       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.util.AbstractMixedCollection-method-removeListener\" rel=\"Ext.util.AbstractMixedCollection-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
1480       "params": [
1481         {
1482           "type": "String",
1483           "name": "eventName",
1484           "doc": "<p>The type of event the handler was associated with.</p>\n",
1485           "optional": false
1486         },
1487         {
1488           "type": "Function",
1489           "name": "handler",
1490           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.util.AbstractMixedCollection-method-addListener\" rel=\"Ext.util.AbstractMixedCollection-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
1491           "optional": false
1492         },
1493         {
1494           "type": "Object",
1495           "name": "scope",
1496           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1497           "optional": true
1498         }
1499       ],
1500       "return": {
1501         "type": "void",
1502         "doc": "\n"
1503       },
1504       "private": false,
1505       "static": false,
1506       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1507       "linenr": 608,
1508       "html_filename": "Observable.html",
1509       "href": "Observable.html#Ext-util-Observable-method-un",
1510       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.util.AbstractMixedCollection-method-removeListener\" rel=\"Ext.util.AbstractMixedCollection-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
1511     }
1512   ],
1513   "property": [
1514
1515   ],
1516   "event": [
1517     {
1518       "tagname": "event",
1519       "name": "add",
1520       "member": "Ext.util.AbstractMixedCollection",
1521       "doc": "<p>Fires when an item is added to the collection.</p>\n",
1522       "params": [
1523         {
1524           "type": "Number",
1525           "name": "index",
1526           "doc": "<p>The index at which the item was added.</p>\n",
1527           "optional": false
1528         },
1529         {
1530           "type": "Object",
1531           "name": "o",
1532           "doc": "<p>The item added.</p>\n",
1533           "optional": false
1534         },
1535         {
1536           "type": "String",
1537           "name": "key",
1538           "doc": "<p>The key associated with the added item.</p>\n",
1539           "optional": false
1540         }
1541       ],
1542       "private": false,
1543       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1544       "linenr": 26,
1545       "html_filename": "AbstractMixedCollection.html",
1546       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-add",
1547       "shortDoc": "<p>Fires when an item is added to the collection.</p>\n"
1548     },
1549     {
1550       "tagname": "event",
1551       "name": "clear",
1552       "member": "Ext.util.AbstractMixedCollection",
1553       "doc": "<p>Fires when the collection is cleared.</p>\n",
1554       "params": [
1555
1556       ],
1557       "private": false,
1558       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1559       "linenr": 20,
1560       "html_filename": "AbstractMixedCollection.html",
1561       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-clear",
1562       "shortDoc": "<p>Fires when the collection is cleared.</p>\n"
1563     },
1564     {
1565       "tagname": "event",
1566       "name": "remove",
1567       "member": "Ext.util.AbstractMixedCollection",
1568       "doc": "<p>Fires when an item is removed from the collection.</p>\n",
1569       "params": [
1570         {
1571           "type": "Object",
1572           "name": "o",
1573           "doc": "<p>The item being removed.</p>\n",
1574           "optional": false
1575         },
1576         {
1577           "type": "String",
1578           "name": "key",
1579           "doc": "<p>(optional) The key associated with the removed item.</p>\n",
1580           "optional": true
1581         }
1582       ],
1583       "private": false,
1584       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1585       "linenr": 44,
1586       "html_filename": "AbstractMixedCollection.html",
1587       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-remove",
1588       "shortDoc": "<p>Fires when an item is removed from the collection.</p>\n"
1589     },
1590     {
1591       "tagname": "event",
1592       "name": "replace",
1593       "member": "Ext.util.AbstractMixedCollection",
1594       "doc": "<p>Fires when an item is replaced in the collection.</p>\n",
1595       "params": [
1596         {
1597           "type": "String",
1598           "name": "key",
1599           "doc": "<p>he key associated with the new added.</p>\n",
1600           "optional": false
1601         },
1602         {
1603           "type": "Object",
1604           "name": "old",
1605           "doc": "<p>The item being replaced.</p>\n",
1606           "optional": false
1607         },
1608         {
1609           "type": "Object",
1610           "name": "new",
1611           "doc": "<p>The new item.</p>\n",
1612           "optional": false
1613         }
1614       ],
1615       "private": false,
1616       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1617       "linenr": 35,
1618       "html_filename": "AbstractMixedCollection.html",
1619       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-replace",
1620       "shortDoc": "<p>Fires when an item is replaced in the collection.</p>\n"
1621     }
1622   ],
1623   "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1624   "linenr": 1,
1625   "html_filename": "AbstractMixedCollection.html",
1626   "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection",
1627   "cssVar": [
1628
1629   ],
1630   "cssMixin": [
1631
1632   ],
1633   "component": false,
1634   "superclasses": [
1635
1636   ],
1637   "subclasses": [
1638     "Ext.util.MixedCollection"
1639   ],
1640   "mixedInto": [
1641
1642   ],
1643   "allMixins": [
1644     "Ext.util.Observable"
1645   ]
1646 });