Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.draw.CompositeSprite.js
1 Ext.data.JsonP.Ext_draw_CompositeSprite({
2   "tagname": "class",
3   "name": "Ext.draw.CompositeSprite",
4   "doc": "<p>A composite Sprite handles a group of sprites with common methods to a sprite\nsuch as <code>hide</code>, <code>show</code>, <code>setAttributes</code>. These methods are applied to the set of sprites\nadded to the group.</p>\n\n<p>CompositeSprite extends <a href=\"#/api/Ext.util.MixedCollection\" rel=\"Ext.util.MixedCollection\" class=\"docClass\">Ext.util.MixedCollection</a> so you can use the same methods\nin <code>MixedCollection</code> to iterate through sprites, add and remove elements, etc.</p>\n\n<p>In order to create a CompositeSprite, one has to provide a handle to the surface where it is\nrendered:</p>\n\n<pre><code>var group = Ext.create('Ext.draw.CompositeSprite', {\n    surface: drawComponent.surface\n});\n</code></pre>\n\n<p>Then just by using <code>MixedCollection</code> methods it's possible to add <a href=\"#/api/Ext.draw.Sprite\" rel=\"Ext.draw.Sprite\" class=\"docClass\">Ext.draw.Sprite</a>s:</p>\n\n<pre><code>group.add(sprite1);\ngroup.add(sprite2);\ngroup.add(sprite3);\n</code></pre>\n\n<p>And then apply common Sprite methods to them:</p>\n\n<pre><code>group.setAttributes({\n    fill: '#f00'\n}, true);\n</code></pre>\n",
5   "extends": "Ext.util.MixedCollection",
6   "mixins": [
7     "Ext.util.Animate"
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.draw.CompositeSprite-method-addAll\" rel=\"Ext.draw.CompositeSprite-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.draw.CompositeSprite-method-addListener\" rel=\"Ext.draw.CompositeSprite-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": "CompositeSprite",
48       "member": "Ext.util.MixedCollection",
49       "doc": "\n",
50       "params": [
51         {
52           "type": "Boolean",
53           "name": "allowFunctions",
54           "doc": "<p>Specify <tt>true</tt> if the <a href=\"#/api/Ext.draw.CompositeSprite-method-addAll\" rel=\"Ext.draw.CompositeSprite-method-addAll\" class=\"docClass\">addAll</a>\nfunction should add function references to the collection. Defaults to\n<tt>false</tt>.</p>\n",
55           "optional": false
56         },
57         {
58           "type": "Function",
59           "name": "keyFn",
60           "doc": "<p>A function that can accept an item of the type(s) stored in this MixedCollection\nand return the key value for that item.  This is used when available to look up the key on items that\nwere passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is\nequivalent to providing an implementation for the <a href=\"#/api/Ext.draw.CompositeSprite-method-getKey\" rel=\"Ext.draw.CompositeSprite-method-getKey\" class=\"docClass\">getKey</a> method.</p>\n",
61           "optional": false
62         }
63       ],
64       "return": {
65         "type": "void",
66         "doc": "\n"
67       },
68       "private": false,
69       "static": false,
70       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/MixedCollection.js",
71       "linenr": 1,
72       "html_filename": "MixedCollection.html",
73       "href": "MixedCollection.html#Ext-util-MixedCollection-method-constructor",
74       "shortDoc": "\n"
75     },
76     {
77       "tagname": "method",
78       "name": "add",
79       "member": "Ext.draw.CompositeSprite",
80       "doc": "<p>Add a Sprite to the Group</p>\n",
81       "params": [
82         {
83           "type": "Object",
84           "name": "key",
85           "doc": "\n",
86           "optional": false
87         },
88         {
89           "type": "Object",
90           "name": "o",
91           "doc": "\n",
92           "optional": false
93         }
94       ],
95       "return": {
96         "type": "void",
97         "doc": "\n"
98       },
99       "private": false,
100       "static": false,
101       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
102       "linenr": 97,
103       "html_filename": "CompositeSprite.html",
104       "href": "CompositeSprite.html#Ext-draw-CompositeSprite-method-add",
105       "shortDoc": "<p>Add a Sprite to the Group</p>\n"
106     },
107     {
108       "tagname": "method",
109       "name": "addAll",
110       "member": "Ext.util.AbstractMixedCollection",
111       "doc": "<p>Adds all elements of an Array or an Object to the collection.</p>\n",
112       "params": [
113         {
114           "type": "Object/Array",
115           "name": "objs",
116           "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.draw.CompositeSprite-cfg-allowFunctions\" rel=\"Ext.draw.CompositeSprite-cfg-allowFunctions\" class=\"docClass\">allowFunctions</a></code>\nhas been set to <tt>true</tt>.</p>\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/AbstractMixedCollection.js",
127       "linenr": 166,
128       "html_filename": "AbstractMixedCollection.html",
129       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-addAll",
130       "shortDoc": "<p>Adds all elements of an Array or an Object to the collection.</p>\n"
131     },
132     {
133       "tagname": "method",
134       "name": "addEvents",
135       "member": "Ext.util.Observable",
136       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
137       "params": [
138         {
139           "type": "Object/String",
140           "name": "o",
141           "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",
142           "optional": false
143         },
144         {
145           "type": "String",
146           "name": "",
147           "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",
148           "optional": false
149         }
150       ],
151       "return": {
152         "type": "void",
153         "doc": "\n"
154       },
155       "private": false,
156       "static": false,
157       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
158       "linenr": 452,
159       "html_filename": "Observable.html",
160       "href": "Observable.html#Ext-util-Observable-method-addEvents",
161       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
162     },
163     {
164       "tagname": "method",
165       "name": "addListener",
166       "member": "Ext.util.Observable",
167       "doc": "<p>Appends an event handler to this object.</p>\n",
168       "params": [
169         {
170           "type": "String",
171           "name": "eventName",
172           "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",
173           "optional": false
174         },
175         {
176           "type": "Function",
177           "name": "handler",
178           "doc": "<p>The method the event invokes.</p>\n",
179           "optional": false
180         },
181         {
182           "type": "Object",
183           "name": "scope",
184           "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",
185           "optional": true
186         },
187         {
188           "type": "Object",
189           "name": "options",
190           "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",
191           "optional": true
192         }
193       ],
194       "return": {
195         "type": "void",
196         "doc": "\n"
197       },
198       "private": false,
199       "static": false,
200       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
201       "linenr": 271,
202       "html_filename": "Observable.html",
203       "href": "Observable.html#Ext-util-Observable-method-addListener",
204       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
205     },
206     {
207       "tagname": "method",
208       "name": "addManagedListener",
209       "member": "Ext.util.Observable",
210       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
211       "params": [
212         {
213           "type": "Observable/Element",
214           "name": "item",
215           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
216           "optional": false
217         },
218         {
219           "type": "Object/String",
220           "name": "ename",
221           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
222           "optional": false
223         },
224         {
225           "type": "Function",
226           "name": "fn",
227           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
228           "optional": false
229         },
230         {
231           "type": "Object",
232           "name": "scope",
233           "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",
234           "optional": false
235         },
236         {
237           "type": "Object",
238           "name": "opt",
239           "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",
240           "optional": false
241         }
242       ],
243       "return": {
244         "type": "void",
245         "doc": "\n"
246       },
247       "private": false,
248       "static": false,
249       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
250       "linenr": 155,
251       "html_filename": "Observable.html",
252       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
253       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
254     },
255     {
256       "tagname": "method",
257       "name": "animate",
258       "member": "Ext.util.Animate",
259       "doc": "<p>Perform custom animation on this object.<p>\n<p>This method is applicable to both the the <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a> class and the <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Element</a> class.\nIt performs animated transitions of certain properties of this object over a specified timeline.</p>\n<p>The sole parameter is an object which specifies start property values, end property values, and properties which\ndescribe the timeline. Of the properties listed below, only <b><code>to</code></b> is mandatory.</p>\n<p>Properties include<ul>\n<li><code>from</code> <div class=\"sub-desc\">An object which specifies start values for the properties being animated.\nIf not supplied, properties are animated from current settings. The actual properties which may be animated depend upon\nths object being animated. See the sections below on Element and Component animation.<div></li>\n<li><code>to</code> <div class=\"sub-desc\">An object which specifies end values for the properties being animated.</div></li>\n<li><code>duration</code><div class=\"sub-desc\">The duration <b>in milliseconds</b> for which the animation will run.</div></li>\n<li><code>easing</code> <div class=\"sub-desc\">A string value describing an easing type to modify the rate of change from the default linear to non-linear. Values may be one of:<code><ul>\n<li>ease</li>\n<li>easeIn</li>\n<li>easeOut</li>\n<li>easeInOut</li>\n<li>backIn</li>\n<li>backOut</li>\n<li>elasticIn</li>\n<li>elasticOut</li>\n<li>bounceIn</li>\n<li>bounceOut</li>\n</ul></code></div></li>\n<li><code>keyframes</code> <div class=\"sub-desc\">This is an object which describes the state of animated properties at certain points along the timeline.\nit is an object containing properties who's names are the percentage along the timeline being described and who's values specify the animation state at that point.</div></li>\n<li><code>listeners</code> <div class=\"sub-desc\">This is a standard <a href=\"#/api/Ext.util.Observable-cfg-listeners\" rel=\"Ext.util.Observable-cfg-listeners\" class=\"docClass\">listeners</a> configuration object which may be used\nto inject behaviour at either the <code>beforeanimate</code> event or the <code>afteranimate</code> event.</div></li>\n</ul></p>\n<h3>Animating an <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Element</a></h3>\nWhen animating an Element, the following properties may be specified in <code>from</code>, <code>to</code>, and <code>keyframe</code> objects:<ul>\n<li><code>x</code> <div class=\"sub-desc\">The page X position in pixels.</div></li>\n<li><code>y</code> <div class=\"sub-desc\">The page Y position in pixels</div></li>\n<li><code>left</code> <div class=\"sub-desc\">The element's CSS <code>left</code> value. Units must be supplied.</div></li>\n<li><code>top</code> <div class=\"sub-desc\">The element's CSS <code>top</code> value. Units must be supplied.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The element's CSS <code>width</code> value. Units must be supplied.</div></li>\n<li><code>height</code> <div class=\"sub-desc\">The element's CSS <code>height</code> value. Units must be supplied.</div></li>\n<li><code>scrollLeft</code> <div class=\"sub-desc\">The element's <code>scrollLeft</code> value.</div></li>\n<li><code>scrollTop</code> <div class=\"sub-desc\">The element's <code>scrollLeft</code> value.</div></li>\n<li><code>opacity</code> <div class=\"sub-desc\">The element's <code>opacity</code> value. This must be a value between <code>0</code> and <code>1</code>.</div></li>\n</ul>\n<p><b>Be aware than animating an Element which is being used by an <a href=\"#/api/Ext\" rel=\"Ext\" class=\"docClass\">Ext</a> Component without in some way informing the Component about the changed element state\nwill result in incorrect Component behaviour. This is because the Component will be using the old state of the element. To avoid this problem, it is now possible to\ndirectly animate certain properties of Components.</b></p>\n<h3>Animating a <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Component</a></h3>\nWhen animating an Element, the following properties may be specified in <code>from</code>, <code>to</code>, and <code>keyframe</code> objects:<ul>\n<li><code>x</code> <div class=\"sub-desc\">The Component's page X position in pixels.</div></li>\n<li><code>y</code> <div class=\"sub-desc\">The Component's page Y position in pixels</div></li>\n<li><code>left</code> <div class=\"sub-desc\">The Component's <code>left</code> value in pixels.</div></li>\n<li><code>top</code> <div class=\"sub-desc\">The Component's <code>top</code> value in pixels.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The Component's <code>width</code> value in pixels.</div></li>\n<li><code>width</code> <div class=\"sub-desc\">The Component's <code>width</code> value in pixels.</div></li>\n<li><code>dynamic</code> <div class=\"sub-desc\">Specify as true to update the Component's layout (if it is a Container) at every frame\nof the animation. <i>Use sparingly as laying out on every intermediate size change is an expensive operation</i>.</div></li>\n</ul>\n<p>For example, to animate a Window to a new size, ensuring that its internal layout, and any shadow is correct:</p>\n<pre><code>myWindow = Ext.create('Ext.window.Window', {\n    title: 'Test Component animation',\n    width: 500,\n    height: 300,\n    layout: {\n        type: 'hbox',\n        align: 'stretch'\n    },\n    items: [{\n        title: 'Left: 33%',\n        margins: '5 0 5 5',\n        flex: 1\n    }, {\n        title: 'Left: 66%',\n        margins: '5 5 5 5',\n        flex: 2\n    }]\n});\nmyWindow.show();\nmyWindow.header.el.on('click', function() {\n    myWindow.animate({\n        to: {\n            width: (myWindow.getWidth() == 500) ? 700 : 500,\n            height: (myWindow.getHeight() == 300) ? 400 : 300,\n        }\n    });\n});\n</code></pre>\n<p>For performance reasons, by default, the internal layout is only updated when the Window reaches its final <code>\"to\"</code> size. If dynamic updating of the Window's child\nComponents is required, then configure the animation with <code>dynamic: true</code> and the two child items will maintain their proportions during the animation.</p>\n\n",
260       "params": [
261         {
262           "type": "Object",
263           "name": "config",
264           "doc": "<p>An object containing properties which describe the animation's start and end states, and the timeline of the animation.</p>\n",
265           "optional": false
266         }
267       ],
268       "return": {
269         "type": "Object",
270         "doc": "<p>this</p>\n"
271       },
272       "private": false,
273       "static": false,
274       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
275       "linenr": 207,
276       "html_filename": "Animate.html",
277       "href": "Animate.html#Ext-util-Animate-method-animate",
278       "shortDoc": "Perform custom animation on this object.\nThis method is applicable to both the the Component class and the Element cl..."
279     },
280     {
281       "tagname": "method",
282       "name": "capture",
283       "member": "Ext.util.Observable",
284       "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",
285       "params": [
286         {
287           "type": "Observable",
288           "name": "o",
289           "doc": "<p>The Observable to capture events from.</p>\n",
290           "optional": false
291         },
292         {
293           "type": "Function",
294           "name": "fn",
295           "doc": "<p>The function to call when an event is fired.</p>\n",
296           "optional": false
297         },
298         {
299           "type": "Object",
300           "name": "scope",
301           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
302           "optional": true
303         }
304       ],
305       "return": {
306         "type": "void",
307         "doc": "\n"
308       },
309       "private": false,
310       "static": true,
311       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
312       "linenr": 55,
313       "html_filename": "Observable.html",
314       "href": "Observable.html#Ext-util-Observable-method-capture",
315       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
316     },
317     {
318       "tagname": "method",
319       "name": "clear",
320       "member": "Ext.util.AbstractMixedCollection",
321       "doc": "<p>Removes all items from the collection.  Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-clear\" rel=\"Ext.draw.CompositeSprite-event-clear\" class=\"docClass\">clear</a> event when complete.</p>\n",
322       "params": [
323
324       ],
325       "return": {
326         "type": "void",
327         "doc": "\n"
328       },
329       "private": false,
330       "static": false,
331       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
332       "linenr": 435,
333       "html_filename": "AbstractMixedCollection.html",
334       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-clear",
335       "shortDoc": "<p>Removes all items from the collection.  Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-clear\" rel=\"Ext.draw.CompositeSprite-event-clear\" class=\"docClass\">clear</a> event when complete.</p>\n"
336     },
337     {
338       "tagname": "method",
339       "name": "clearListeners",
340       "member": "Ext.util.Observable",
341       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
342       "params": [
343
344       ],
345       "return": {
346         "type": "void",
347         "doc": "\n"
348       },
349       "private": false,
350       "static": false,
351       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
352       "linenr": 383,
353       "html_filename": "Observable.html",
354       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
355       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
356     },
357     {
358       "tagname": "method",
359       "name": "clearManagedListeners",
360       "member": "Ext.util.Observable",
361       "doc": "<p>Removes all managed listeners for this object.</p>\n",
362       "params": [
363
364       ],
365       "return": {
366         "type": "void",
367         "doc": "\n"
368       },
369       "private": false,
370       "static": false,
371       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
372       "linenr": 412,
373       "html_filename": "Observable.html",
374       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
375       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
376     },
377     {
378       "tagname": "method",
379       "name": "clone",
380       "member": "Ext.util.AbstractMixedCollection",
381       "doc": "<p>Creates a shallow copy of this collection</p>\n",
382       "params": [
383
384       ],
385       "return": {
386         "type": "MixedCollection",
387         "doc": "\n"
388       },
389       "private": false,
390       "static": false,
391       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
392       "linenr": 727,
393       "html_filename": "AbstractMixedCollection.html",
394       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-clone",
395       "shortDoc": "<p>Creates a shallow copy of this collection</p>\n"
396     },
397     {
398       "tagname": "method",
399       "name": "collect",
400       "member": "Ext.util.AbstractMixedCollection",
401       "doc": "<p>Collects unique values of a particular property in this MixedCollection</p>\n",
402       "params": [
403         {
404           "type": "String",
405           "name": "property",
406           "doc": "<p>The property to collect on</p>\n",
407           "optional": false
408         },
409         {
410           "type": "String",
411           "name": "root",
412           "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",
413           "optional": false
414         },
415         {
416           "type": "Boolean",
417           "name": "allowBlank",
418           "doc": "<p>(optional) Pass true to allow null, undefined or empty string values</p>\n",
419           "optional": true
420         }
421       ],
422       "return": {
423         "type": "Array",
424         "doc": "<p>The unique values</p>\n"
425       },
426       "private": false,
427       "static": false,
428       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
429       "linenr": 489,
430       "html_filename": "AbstractMixedCollection.html",
431       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-collect",
432       "shortDoc": "<p>Collects unique values of a particular property in this MixedCollection</p>\n"
433     },
434     {
435       "tagname": "method",
436       "name": "contains",
437       "member": "Ext.util.AbstractMixedCollection",
438       "doc": "<p>Returns true if the collection contains the passed Object as an item.</p>\n",
439       "params": [
440         {
441           "type": "Object",
442           "name": "o",
443           "doc": "<p>The Object to look for in the collection.</p>\n",
444           "optional": false
445         }
446       ],
447       "return": {
448         "type": "Boolean",
449         "doc": "<p>True if the collection contains the Object as an item.</p>\n"
450       },
451       "private": false,
452       "static": false,
453       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
454       "linenr": 417,
455       "html_filename": "AbstractMixedCollection.html",
456       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-contains",
457       "shortDoc": "<p>Returns true if the collection contains the passed Object as an item.</p>\n"
458     },
459     {
460       "tagname": "method",
461       "name": "containsKey",
462       "member": "Ext.util.AbstractMixedCollection",
463       "doc": "<p>Returns true if the collection contains the passed Object as a key.</p>\n",
464       "params": [
465         {
466           "type": "String",
467           "name": "key",
468           "doc": "<p>The key to look for in the collection.</p>\n",
469           "optional": false
470         }
471       ],
472       "return": {
473         "type": "Boolean",
474         "doc": "<p>True if the collection contains the Object as a key.</p>\n"
475       },
476       "private": false,
477       "static": false,
478       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
479       "linenr": 426,
480       "html_filename": "AbstractMixedCollection.html",
481       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-containsKey",
482       "shortDoc": "<p>Returns true if the collection contains the passed Object as a key.</p>\n"
483     },
484     {
485       "tagname": "method",
486       "name": "destroy",
487       "member": "Ext.draw.CompositeSprite",
488       "doc": "<p>Destroys the SpriteGroup</p>\n",
489       "params": [
490
491       ],
492       "return": {
493         "type": "void",
494         "doc": "\n"
495       },
496       "private": false,
497       "static": false,
498       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
499       "linenr": 275,
500       "html_filename": "CompositeSprite.html",
501       "href": "CompositeSprite.html#Ext-draw-CompositeSprite-method-destroy",
502       "shortDoc": "<p>Destroys the SpriteGroup</p>\n"
503     },
504     {
505       "tagname": "method",
506       "name": "each",
507       "member": "Ext.util.AbstractMixedCollection",
508       "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",
509       "params": [
510         {
511           "type": "Function",
512           "name": "fn",
513           "doc": "<p>The function to execute for each item.</p>\n",
514           "optional": false
515         },
516         {
517           "type": "Object",
518           "name": "scope",
519           "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",
520           "optional": true
521         }
522       ],
523       "return": {
524         "type": "void",
525         "doc": "\n"
526       },
527       "private": false,
528       "static": false,
529       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
530       "linenr": 196,
531       "html_filename": "AbstractMixedCollection.html",
532       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-each",
533       "shortDoc": "Executes the specified function once for every item in the collection, passing the following arguments:\n\n\nitem : Mixe..."
534     },
535     {
536       "tagname": "method",
537       "name": "eachKey",
538       "member": "Ext.util.AbstractMixedCollection",
539       "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",
540       "params": [
541         {
542           "type": "Function",
543           "name": "fn",
544           "doc": "<p>The function to execute for each item.</p>\n",
545           "optional": false
546         },
547         {
548           "type": "Object",
549           "name": "scope",
550           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the browser window.</p>\n",
551           "optional": true
552         }
553       ],
554       "return": {
555         "type": "void",
556         "doc": "\n"
557       },
558       "private": false,
559       "static": false,
560       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
561       "linenr": 221,
562       "html_filename": "AbstractMixedCollection.html",
563       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-eachKey",
564       "shortDoc": "Executes the specified function once for every key in the collection, passing each\nkey, and its associated item as th..."
565     },
566     {
567       "tagname": "method",
568       "name": "enableBubble",
569       "member": "Ext.util.Observable",
570       "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",
571       "params": [
572         {
573           "type": "String/Array",
574           "name": "events",
575           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
576           "optional": false
577         }
578       ],
579       "return": {
580         "type": "void",
581         "doc": "\n"
582       },
583       "private": false,
584       "static": false,
585       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
586       "linenr": 554,
587       "html_filename": "Observable.html",
588       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
589       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
590     },
591     {
592       "tagname": "method",
593       "name": "filter",
594       "member": "Ext.util.AbstractMixedCollection",
595       "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",
596       "params": [
597         {
598           "type": "Array/String",
599           "name": "property",
600           "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",
601           "optional": false
602         },
603         {
604           "type": "String/RegExp",
605           "name": "value",
606           "doc": "<p>Either string that the property values\nshould start with or a RegExp to test against the property</p>\n",
607           "optional": false
608         },
609         {
610           "type": "Boolean",
611           "name": "anyMatch",
612           "doc": "<p>(optional) True to match any part of the string, not just the beginning</p>\n",
613           "optional": true
614         },
615         {
616           "type": "Boolean",
617           "name": "caseSensitive",
618           "doc": "<p>(optional) True for case sensitive comparison (defaults to False).</p>\n",
619           "optional": true
620         }
621       ],
622       "return": {
623         "type": "MixedCollection",
624         "doc": "<p>The new filtered collection</p>\n"
625       },
626       "private": false,
627       "static": false,
628       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
629       "linenr": 566,
630       "html_filename": "AbstractMixedCollection.html",
631       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-filter",
632       "shortDoc": "Filters the objects in this collection by a set of Filters, or by a single\nproperty/value pair with optional paramete..."
633     },
634     {
635       "tagname": "method",
636       "name": "filterBy",
637       "member": "Ext.util.AbstractMixedCollection",
638       "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",
639       "params": [
640         {
641           "type": "Function",
642           "name": "fn",
643           "doc": "<p>The function to be called, it will receive the args o (the object), k (the key)</p>\n",
644           "optional": false
645         },
646         {
647           "type": "Object",
648           "name": "scope",
649           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this MixedCollection.</p>\n",
650           "optional": true
651         }
652       ],
653       "return": {
654         "type": "MixedCollection",
655         "doc": "<p>The new filtered collection</p>\n"
656       },
657       "private": false,
658       "static": false,
659       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
660       "linenr": 630,
661       "html_filename": "AbstractMixedCollection.html",
662       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-filterBy",
663       "shortDoc": "Filter by a function. Returns a new collection that has been filtered.\nThe passed function will be called with each o..."
664     },
665     {
666       "tagname": "method",
667       "name": "findBy",
668       "member": "Ext.util.AbstractMixedCollection",
669       "doc": "<p>Returns the first item in the collection which elicits a true return value from the\npassed selection function.</p>\n",
670       "params": [
671         {
672           "type": "Function",
673           "name": "fn",
674           "doc": "<p>The selection function to execute for each item.</p>\n",
675           "optional": false
676         },
677         {
678           "type": "Object",
679           "name": "scope",
680           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the browser window.</p>\n",
681           "optional": true
682         }
683       ],
684       "return": {
685         "type": "Object",
686         "doc": "<p>The first item in the collection which returned true from the selection function.</p>\n"
687       },
688       "private": false,
689       "static": false,
690       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
691       "linenr": 238,
692       "html_filename": "AbstractMixedCollection.html",
693       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-findBy",
694       "shortDoc": "<p>Returns the first item in the collection which elicits a true return value from the\npassed selection function.</p>\n"
695     },
696     {
697       "tagname": "method",
698       "name": "findIndex",
699       "member": "Ext.util.AbstractMixedCollection",
700       "doc": "<p>Finds the index of the first matching object in this collection by a specific property/value.</p>\n",
701       "params": [
702         {
703           "type": "String",
704           "name": "property",
705           "doc": "<p>The name of a property on your objects.</p>\n",
706           "optional": false
707         },
708         {
709           "type": "String/RegExp",
710           "name": "value",
711           "doc": "<p>A string that the property values\nshould start with or a RegExp to test against the property.</p>\n",
712           "optional": false
713         },
714         {
715           "type": "Number",
716           "name": "start",
717           "doc": "<p>(optional) The index to start searching at (defaults to 0).</p>\n",
718           "optional": true
719         },
720         {
721           "type": "Boolean",
722           "name": "anyMatch",
723           "doc": "<p>(optional) True to match any part of the string, not just the beginning.</p>\n",
724           "optional": true
725         },
726         {
727           "type": "Boolean",
728           "name": "caseSensitive",
729           "doc": "<p>(optional) True for case sensitive comparison.</p>\n",
730           "optional": true
731         }
732       ],
733       "return": {
734         "type": "Number",
735         "doc": "<p>The matched index or -1</p>\n"
736       },
737       "private": false,
738       "static": false,
739       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
740       "linenr": 657,
741       "html_filename": "AbstractMixedCollection.html",
742       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-findIndex",
743       "shortDoc": "<p>Finds the index of the first matching object in this collection by a specific property/value.</p>\n"
744     },
745     {
746       "tagname": "method",
747       "name": "findIndexBy",
748       "member": "Ext.util.AbstractMixedCollection",
749       "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",
750       "params": [
751         {
752           "type": "Function",
753           "name": "fn",
754           "doc": "<p>The function to be called, it will receive the args o (the object), k (the key).</p>\n",
755           "optional": false
756         },
757         {
758           "type": "Object",
759           "name": "scope",
760           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this MixedCollection.</p>\n",
761           "optional": true
762         },
763         {
764           "type": "Number",
765           "name": "start",
766           "doc": "<p>(optional) The index to start searching at (defaults to 0).</p>\n",
767           "optional": true
768         }
769       ],
770       "return": {
771         "type": "Number",
772         "doc": "<p>The matched index or -1</p>\n"
773       },
774       "private": false,
775       "static": false,
776       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
777       "linenr": 677,
778       "html_filename": "AbstractMixedCollection.html",
779       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-findIndexBy",
780       "shortDoc": "Find the index of the first matching object in this collection by a function.\nIf the function returns true it is cons..."
781     },
782     {
783       "tagname": "method",
784       "name": "fireEvent",
785       "member": "Ext.util.Observable",
786       "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.draw.CompositeSprite-method-enableBubble\" rel=\"Ext.draw.CompositeSprite-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
787       "params": [
788         {
789           "type": "String",
790           "name": "eventName",
791           "doc": "<p>The name of the event to fire.</p>\n",
792           "optional": false
793         },
794         {
795           "type": "Object...",
796           "name": "args",
797           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
798           "optional": false
799         }
800       ],
801       "return": {
802         "type": "Boolean",
803         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
804       },
805       "private": false,
806       "static": false,
807       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
808       "linenr": 232,
809       "html_filename": "Observable.html",
810       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
811       "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..."
812     },
813     {
814       "tagname": "method",
815       "name": "first",
816       "member": "Ext.util.AbstractMixedCollection",
817       "doc": "<p>Returns the first item in the collection.</p>\n",
818       "params": [
819
820       ],
821       "return": {
822         "type": "Object",
823         "doc": "<p>the first item in the collection..</p>\n"
824       },
825       "private": false,
826       "static": false,
827       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
828       "linenr": 448,
829       "html_filename": "AbstractMixedCollection.html",
830       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-first",
831       "shortDoc": "<p>Returns the first item in the collection.</p>\n"
832     },
833     {
834       "tagname": "method",
835       "name": "get",
836       "member": "Ext.util.AbstractMixedCollection",
837       "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.draw.CompositeSprite--key\" rel=\"Ext.draw.CompositeSprite--key\" class=\"docClass\">key</a> first, then if nothing matched calling <a href=\"#/api/Ext.draw.CompositeSprite-method-getAt\" rel=\"Ext.draw.CompositeSprite-method-getAt\" class=\"docClass\">getAt</a>.</p>\n",
838       "params": [
839         {
840           "type": "String/Number",
841           "name": "key",
842           "doc": "<p>The key or index of the item.</p>\n",
843           "optional": false
844         }
845       ],
846       "return": {
847         "type": "Object",
848         "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"
849       },
850       "private": false,
851       "static": false,
852       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
853       "linenr": 384,
854       "html_filename": "AbstractMixedCollection.html",
855       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-get",
856       "shortDoc": "Returns the item associated with the passed key OR index.\nKey has priority over index.  This is the equivalent\nof cal..."
857     },
858     {
859       "tagname": "method",
860       "name": "getActiveAnimation",
861       "member": "Ext.util.Animate",
862       "doc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n",
863       "params": [
864
865       ],
866       "return": {
867         "type": "Mixed",
868         "doc": "<p>anim if element has active effects, else false</p>\n"
869       },
870       "private": false,
871       "static": false,
872       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
873       "linenr": 377,
874       "html_filename": "Animate.html",
875       "href": "Animate.html#Ext-util-Animate-method-getActiveAnimation",
876       "shortDoc": "<p>Returns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n"
877     },
878     {
879       "tagname": "method",
880       "name": "getAt",
881       "member": "Ext.util.AbstractMixedCollection",
882       "doc": "<p>Returns the item at the specified index.</p>\n",
883       "params": [
884         {
885           "type": "Number",
886           "name": "index",
887           "doc": "<p>The index of the item.</p>\n",
888           "optional": false
889         }
890       ],
891       "return": {
892         "type": "Object",
893         "doc": "<p>The item at the specified index.</p>\n"
894       },
895       "private": false,
896       "static": false,
897       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
898       "linenr": 399,
899       "html_filename": "AbstractMixedCollection.html",
900       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getAt",
901       "shortDoc": "<p>Returns the item at the specified index.</p>\n"
902     },
903     {
904       "tagname": "method",
905       "name": "getBBox",
906       "member": "Ext.draw.CompositeSprite",
907       "doc": "<p>Returns the group bounding box.\nBehaves like <a href=\"#/api/Ext.draw.Sprite\" rel=\"Ext.draw.Sprite\" class=\"docClass\">Ext.draw.Sprite</a> getBBox method.</p>\n",
908       "params": [
909
910       ],
911       "return": {
912         "type": "void",
913         "doc": "\n"
914       },
915       "private": false,
916       "static": false,
917       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
918       "linenr": 123,
919       "html_filename": "CompositeSprite.html",
920       "href": "CompositeSprite.html#Ext-draw-CompositeSprite-method-getBBox",
921       "shortDoc": "<p>Returns the group bounding box.\nBehaves like <a href=\"#/api/Ext.draw.Sprite\" rel=\"Ext.draw.Sprite\" class=\"docClass\">Ext.draw.Sprite</a> getBBox method.</p>\n"
922     },
923     {
924       "tagname": "method",
925       "name": "getByKey",
926       "member": "Ext.util.AbstractMixedCollection",
927       "doc": "<p>Returns the item associated with the passed key.</p>\n",
928       "params": [
929         {
930           "type": "String/Number",
931           "name": "key",
932           "doc": "<p>The key of the item.</p>\n",
933           "optional": false
934         }
935       ],
936       "return": {
937         "type": "Object",
938         "doc": "<p>The item associated with the passed key.</p>\n"
939       },
940       "private": false,
941       "static": false,
942       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
943       "linenr": 408,
944       "html_filename": "AbstractMixedCollection.html",
945       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getByKey",
946       "shortDoc": "<p>Returns the item associated with the passed key.</p>\n"
947     },
948     {
949       "tagname": "method",
950       "name": "getCount",
951       "member": "Ext.util.AbstractMixedCollection",
952       "doc": "<p>Returns the number of items in the collection.</p>\n",
953       "params": [
954
955       ],
956       "return": {
957         "type": "Number",
958         "doc": "<p>the number of items in the collection.</p>\n"
959       },
960       "private": false,
961       "static": false,
962       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
963       "linenr": 358,
964       "html_filename": "AbstractMixedCollection.html",
965       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getCount",
966       "shortDoc": "<p>Returns the number of items in the collection.</p>\n"
967     },
968     {
969       "tagname": "method",
970       "name": "getKey",
971       "member": "Ext.util.AbstractMixedCollection",
972       "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",
973       "params": [
974         {
975           "type": "Object",
976           "name": "item",
977           "doc": "<p>The item for which to find the key.</p>\n",
978           "optional": false
979         }
980       ],
981       "return": {
982         "type": "Object",
983         "doc": "<p>The key for the passed item.</p>\n"
984       },
985       "private": false,
986       "static": false,
987       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
988       "linenr": 103,
989       "html_filename": "AbstractMixedCollection.html",
990       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getKey",
991       "shortDoc": "MixedCollection has a generic way to fetch keys if you implement getKey.  The default implementation\nsimply returns i..."
992     },
993     {
994       "tagname": "method",
995       "name": "getRange",
996       "member": "Ext.util.AbstractMixedCollection",
997       "doc": "<p>Returns a range of items in this collection</p>\n",
998       "params": [
999         {
1000           "type": "Number",
1001           "name": "startIndex",
1002           "doc": "<p>(optional) The starting index. Defaults to 0.</p>\n",
1003           "optional": true
1004         },
1005         {
1006           "type": "Number",
1007           "name": "endIndex",
1008           "doc": "<p>(optional) The ending index. Defaults to the last item.</p>\n",
1009           "optional": true
1010         }
1011       ],
1012       "return": {
1013         "type": "Array",
1014         "doc": "<p>An array of items</p>\n"
1015       },
1016       "private": false,
1017       "static": false,
1018       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1019       "linenr": 536,
1020       "html_filename": "AbstractMixedCollection.html",
1021       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-getRange",
1022       "shortDoc": "<p>Returns a range of items in this collection</p>\n"
1023     },
1024     {
1025       "tagname": "method",
1026       "name": "hasActiveFx",
1027       "member": "Ext.util.Animate",
1028       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.draw.CompositeSprite-method-getActiveAnimation\" rel=\"Ext.draw.CompositeSprite-method-getActiveAnimation\" class=\"docClass\">getActiveAnimation</a>\nReturns thq current animation if this object has any effects actively running or queued, else returns false.</p>\n",
1029       "params": [
1030
1031       ],
1032       "return": {
1033         "type": "Mixed",
1034         "doc": "<p>anim if element has active effects, else false</p>\n"
1035       },
1036       "private": false,
1037       "static": false,
1038       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1039       "linenr": 369,
1040       "html_filename": "Animate.html",
1041       "href": "Animate.html#Ext-util-Animate-method-hasActiveFx",
1042       "shortDoc": "@deprecated 4.0 Replaced by getActiveAnimation\nReturns thq current animation if this object has any effects actively ..."
1043     },
1044     {
1045       "tagname": "method",
1046       "name": "hasListener",
1047       "member": "Ext.util.Observable",
1048       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
1049       "params": [
1050         {
1051           "type": "String",
1052           "name": "eventName",
1053           "doc": "<p>The name of the event to check for</p>\n",
1054           "optional": false
1055         }
1056       ],
1057       "return": {
1058         "type": "Boolean",
1059         "doc": "<p>True if the event is being listened for, else false</p>\n"
1060       },
1061       "private": false,
1062       "static": false,
1063       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1064       "linenr": 480,
1065       "html_filename": "Observable.html",
1066       "href": "Observable.html#Ext-util-Observable-method-hasListener",
1067       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
1068     },
1069     {
1070       "tagname": "method",
1071       "name": "hide",
1072       "member": "Ext.draw.CompositeSprite",
1073       "doc": "<p>Hides all sprites. If the first parameter of the method is true\nthen a redraw will be forced for each sprite.</p>\n",
1074       "params": [
1075         {
1076           "type": "Object",
1077           "name": "redraw",
1078           "doc": "\n",
1079           "optional": false
1080         }
1081       ],
1082       "return": {
1083         "type": "void",
1084         "doc": "\n"
1085       },
1086       "private": false,
1087       "static": false,
1088       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
1089       "linenr": 176,
1090       "html_filename": "CompositeSprite.html",
1091       "href": "CompositeSprite.html#Ext-draw-CompositeSprite-method-hide",
1092       "shortDoc": "<p>Hides all sprites. If the first parameter of the method is true\nthen a redraw will be forced for each sprite.</p>\n"
1093     },
1094     {
1095       "tagname": "method",
1096       "name": "indexOf",
1097       "member": "Ext.util.AbstractMixedCollection",
1098       "doc": "<p>Returns index within the collection of the passed Object.</p>\n",
1099       "params": [
1100         {
1101           "type": "Object",
1102           "name": "o",
1103           "doc": "<p>The item to find the index of.</p>\n",
1104           "optional": false
1105         }
1106       ],
1107       "return": {
1108         "type": "Number",
1109         "doc": "<p>index of the item. Returns -1 if not found.</p>\n"
1110       },
1111       "private": false,
1112       "static": false,
1113       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1114       "linenr": 366,
1115       "html_filename": "AbstractMixedCollection.html",
1116       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-indexOf",
1117       "shortDoc": "<p>Returns index within the collection of the passed Object.</p>\n"
1118     },
1119     {
1120       "tagname": "method",
1121       "name": "indexOfKey",
1122       "member": "Ext.util.AbstractMixedCollection",
1123       "doc": "<p>Returns index within the collection of the passed key.</p>\n",
1124       "params": [
1125         {
1126           "type": "String",
1127           "name": "key",
1128           "doc": "<p>The key to find the index of.</p>\n",
1129           "optional": false
1130         }
1131       ],
1132       "return": {
1133         "type": "Number",
1134         "doc": "<p>index of the key.</p>\n"
1135       },
1136       "private": false,
1137       "static": false,
1138       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1139       "linenr": 375,
1140       "html_filename": "AbstractMixedCollection.html",
1141       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-indexOfKey",
1142       "shortDoc": "<p>Returns index within the collection of the passed key.</p>\n"
1143     },
1144     {
1145       "tagname": "method",
1146       "name": "initSortable",
1147       "member": "Ext.util.Sortable",
1148       "doc": "<p>Performs initialization of this mixin. Component classes using this mixin should call this method\nduring their own initialization.</p>\n",
1149       "params": [
1150
1151       ],
1152       "return": {
1153         "type": "void",
1154         "doc": "\n"
1155       },
1156       "private": false,
1157       "static": false,
1158       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Sortable.js",
1159       "linenr": 37,
1160       "html_filename": "Sortable.html",
1161       "href": "Sortable.html#Ext-util-Sortable-method-initSortable",
1162       "shortDoc": "Performs initialization of this mixin. Component classes using this mixin should call this method\nduring their own in..."
1163     },
1164     {
1165       "tagname": "method",
1166       "name": "insert",
1167       "member": "Ext.util.AbstractMixedCollection",
1168       "doc": "<p>Inserts an item at the specified index in the collection. Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-add\" rel=\"Ext.draw.CompositeSprite-event-add\" class=\"docClass\">add</a> event when complete.</p>\n",
1169       "params": [
1170         {
1171           "type": "Number",
1172           "name": "index",
1173           "doc": "<p>The index to insert the item at.</p>\n",
1174           "optional": false
1175         },
1176         {
1177           "type": "String",
1178           "name": "key",
1179           "doc": "<p>The key to associate with the new item, or the item itself.</p>\n",
1180           "optional": false
1181         },
1182         {
1183           "type": "Object",
1184           "name": "o",
1185           "doc": "<p>(optional) If the second parameter was a key, the new item.</p>\n",
1186           "optional": true
1187         }
1188       ],
1189       "return": {
1190         "type": "Object",
1191         "doc": "<p>The item inserted.</p>\n"
1192       },
1193       "private": false,
1194       "static": false,
1195       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1196       "linenr": 268,
1197       "html_filename": "AbstractMixedCollection.html",
1198       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-insert",
1199       "shortDoc": "<p>Inserts an item at the specified index in the collection. Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-add\" rel=\"Ext.draw.CompositeSprite-event-add\" class=\"docClass\">add</a> event when complete.</p>\n"
1200     },
1201     {
1202       "tagname": "method",
1203       "name": "last",
1204       "member": "Ext.util.AbstractMixedCollection",
1205       "doc": "<p>Returns the last item in the collection.</p>\n",
1206       "params": [
1207
1208       ],
1209       "return": {
1210         "type": "Object",
1211         "doc": "<p>the last item in the collection..</p>\n"
1212       },
1213       "private": false,
1214       "static": false,
1215       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1216       "linenr": 456,
1217       "html_filename": "AbstractMixedCollection.html",
1218       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-last",
1219       "shortDoc": "<p>Returns the last item in the collection.</p>\n"
1220     },
1221     {
1222       "tagname": "method",
1223       "name": "observe",
1224       "member": "Ext.util.Observable",
1225       "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",
1226       "params": [
1227         {
1228           "type": "Function",
1229           "name": "c",
1230           "doc": "<p>The class constructor to make observable.</p>\n",
1231           "optional": false
1232         },
1233         {
1234           "type": "Object",
1235           "name": "listeners",
1236           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.draw.CompositeSprite-method-addListener\" rel=\"Ext.draw.CompositeSprite-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
1237           "optional": false
1238         }
1239       ],
1240       "return": {
1241         "type": "void",
1242         "doc": "\n"
1243       },
1244       "private": false,
1245       "static": true,
1246       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1247       "linenr": 69,
1248       "html_filename": "Observable.html",
1249       "href": "Observable.html#Ext-util-Observable-method-observe",
1250       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
1251     },
1252     {
1253       "tagname": "method",
1254       "name": "on",
1255       "member": "Ext.util.Observable",
1256       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.draw.CompositeSprite-method-addListener\" rel=\"Ext.draw.CompositeSprite-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
1257       "params": [
1258         {
1259           "type": "String",
1260           "name": "eventName",
1261           "doc": "<p>The type of event to listen for</p>\n",
1262           "optional": false
1263         },
1264         {
1265           "type": "Function",
1266           "name": "handler",
1267           "doc": "<p>The method the event invokes</p>\n",
1268           "optional": false
1269         },
1270         {
1271           "type": "Object",
1272           "name": "scope",
1273           "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",
1274           "optional": true
1275         },
1276         {
1277           "type": "Object",
1278           "name": "options",
1279           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
1280           "optional": true
1281         }
1282       ],
1283       "return": {
1284         "type": "void",
1285         "doc": "\n"
1286       },
1287       "private": false,
1288       "static": false,
1289       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1290       "linenr": 616,
1291       "html_filename": "Observable.html",
1292       "href": "Observable.html#Ext-util-Observable-method-on",
1293       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.draw.CompositeSprite-method-addListener\" rel=\"Ext.draw.CompositeSprite-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
1294     },
1295     {
1296       "tagname": "method",
1297       "name": "relayEvents",
1298       "member": "Ext.util.Observable",
1299       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
1300       "params": [
1301         {
1302           "type": "Object",
1303           "name": "origin",
1304           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1305           "optional": false
1306         },
1307         {
1308           "type": "Array",
1309           "name": "events",
1310           "doc": "<p>Array of event names to relay.</p>\n",
1311           "optional": false
1312         },
1313         {
1314           "type": "Object",
1315           "name": "prefix",
1316           "doc": "\n",
1317           "optional": false
1318         }
1319       ],
1320       "return": {
1321         "type": "void",
1322         "doc": "\n"
1323       },
1324       "private": false,
1325       "static": false,
1326       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1327       "linenr": 520,
1328       "html_filename": "Observable.html",
1329       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1330       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
1331     },
1332     {
1333       "tagname": "method",
1334       "name": "releaseCapture",
1335       "member": "Ext.util.Observable",
1336       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
1337       "params": [
1338         {
1339           "type": "Observable",
1340           "name": "o",
1341           "doc": "<p>The Observable to release</p>\n",
1342           "optional": false
1343         }
1344       ],
1345       "return": {
1346         "type": "void",
1347         "doc": "\n"
1348       },
1349       "private": false,
1350       "static": true,
1351       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1352       "linenr": 46,
1353       "html_filename": "Observable.html",
1354       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1355       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
1356     },
1357     {
1358       "tagname": "method",
1359       "name": "remove",
1360       "member": "Ext.draw.CompositeSprite",
1361       "doc": "<p>Remove a Sprite from the Group</p>\n",
1362       "params": [
1363         {
1364           "type": "Object",
1365           "name": "o",
1366           "doc": "\n",
1367           "optional": false
1368         }
1369       ],
1370       "return": {
1371         "type": "void",
1372         "doc": "\n"
1373       },
1374       "private": false,
1375       "static": false,
1376       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
1377       "linenr": 108,
1378       "html_filename": "CompositeSprite.html",
1379       "href": "CompositeSprite.html#Ext-draw-CompositeSprite-method-remove",
1380       "shortDoc": "<p>Remove a Sprite from the Group</p>\n"
1381     },
1382     {
1383       "tagname": "method",
1384       "name": "removeAll",
1385       "member": "Ext.util.AbstractMixedCollection",
1386       "doc": "<p>Remove all items in the passed array from the collection.</p>\n",
1387       "params": [
1388         {
1389           "type": "Array",
1390           "name": "items",
1391           "doc": "<p>An array of items to be removed.</p>\n",
1392           "optional": false
1393         }
1394       ],
1395       "return": {
1396         "type": "Ext.util.MixedCollection",
1397         "doc": "<p>this object</p>\n"
1398       },
1399       "private": false,
1400       "static": false,
1401       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1402       "linenr": 311,
1403       "html_filename": "AbstractMixedCollection.html",
1404       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-removeAll",
1405       "shortDoc": "<p>Remove all items in the passed array from the collection.</p>\n"
1406     },
1407     {
1408       "tagname": "method",
1409       "name": "removeAt",
1410       "member": "Ext.util.AbstractMixedCollection",
1411       "doc": "<p>Remove an item from a specified index in the collection. Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-remove\" rel=\"Ext.draw.CompositeSprite-event-remove\" class=\"docClass\">remove</a> event when complete.</p>\n",
1412       "params": [
1413         {
1414           "type": "Number",
1415           "name": "index",
1416           "doc": "<p>The index within the collection of the item to remove.</p>\n",
1417           "optional": false
1418         }
1419       ],
1420       "return": {
1421         "type": "Object",
1422         "doc": "<p>The item removed or false if no item was removed.</p>\n"
1423       },
1424       "private": false,
1425       "static": false,
1426       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1427       "linenr": 324,
1428       "html_filename": "AbstractMixedCollection.html",
1429       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-removeAt",
1430       "shortDoc": "<p>Remove an item from a specified index in the collection. Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-remove\" rel=\"Ext.draw.CompositeSprite-event-remove\" class=\"docClass\">remove</a> event when complete.</p>\n"
1431     },
1432     {
1433       "tagname": "method",
1434       "name": "removeAtKey",
1435       "member": "Ext.util.AbstractMixedCollection",
1436       "doc": "<p>Removed an item associated with the passed key fom the collection.</p>\n",
1437       "params": [
1438         {
1439           "type": "String",
1440           "name": "key",
1441           "doc": "<p>The key of the item to remove.</p>\n",
1442           "optional": false
1443         }
1444       ],
1445       "return": {
1446         "type": "Object",
1447         "doc": "<p>The item removed or false if no item was removed.</p>\n"
1448       },
1449       "private": false,
1450       "static": false,
1451       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1452       "linenr": 349,
1453       "html_filename": "AbstractMixedCollection.html",
1454       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-removeAtKey",
1455       "shortDoc": "<p>Removed an item associated with the passed key fom the collection.</p>\n"
1456     },
1457     {
1458       "tagname": "method",
1459       "name": "removeListener",
1460       "member": "Ext.util.Observable",
1461       "doc": "<p>Removes an event handler.</p>\n",
1462       "params": [
1463         {
1464           "type": "String",
1465           "name": "eventName",
1466           "doc": "<p>The type of event the handler was associated with.</p>\n",
1467           "optional": false
1468         },
1469         {
1470           "type": "Function",
1471           "name": "handler",
1472           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.draw.CompositeSprite-method-addListener\" rel=\"Ext.draw.CompositeSprite-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
1473           "optional": false
1474         },
1475         {
1476           "type": "Object",
1477           "name": "scope",
1478           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1479           "optional": true
1480         }
1481       ],
1482       "return": {
1483         "type": "void",
1484         "doc": "\n"
1485       },
1486       "private": false,
1487       "static": false,
1488       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1489       "linenr": 352,
1490       "html_filename": "Observable.html",
1491       "href": "Observable.html#Ext-util-Observable-method-removeListener",
1492       "shortDoc": "<p>Removes an event handler.</p>\n"
1493     },
1494     {
1495       "tagname": "method",
1496       "name": "removeManagedListener",
1497       "member": "Ext.util.Observable",
1498       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.draw.CompositeSprite--mon\" rel=\"Ext.draw.CompositeSprite--mon\" class=\"docClass\">mon</a> method.</p>\n",
1499       "params": [
1500         {
1501           "type": "Observable|Element",
1502           "name": "item",
1503           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1504           "optional": false
1505         },
1506         {
1507           "type": "Object|String",
1508           "name": "ename",
1509           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1510           "optional": false
1511         },
1512         {
1513           "type": "Function",
1514           "name": "fn",
1515           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
1516           "optional": false
1517         },
1518         {
1519           "type": "Object",
1520           "name": "scope",
1521           "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",
1522           "optional": false
1523         }
1524       ],
1525       "return": {
1526         "type": "void",
1527         "doc": "\n"
1528       },
1529       "private": false,
1530       "static": false,
1531       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1532       "linenr": 196,
1533       "html_filename": "Observable.html",
1534       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1535       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.draw.CompositeSprite--mon\" rel=\"Ext.draw.CompositeSprite--mon\" class=\"docClass\">mon</a> method.</p>\n"
1536     },
1537     {
1538       "tagname": "method",
1539       "name": "reorder",
1540       "member": "Ext.util.MixedCollection",
1541       "doc": "<p>Reorders each of the items based on a mapping from old index to new index. Internally this\njust translates into a sort. The 'sort' event is fired whenever reordering has occured.</p>\n",
1542       "params": [
1543         {
1544           "type": "Object",
1545           "name": "mapping",
1546           "doc": "<p>Mapping from old item index to new item index</p>\n",
1547           "optional": false
1548         }
1549       ],
1550       "return": {
1551         "type": "void",
1552         "doc": "\n"
1553       },
1554       "private": false,
1555       "static": false,
1556       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/MixedCollection.js",
1557       "linenr": 151,
1558       "html_filename": "MixedCollection.html",
1559       "href": "MixedCollection.html#Ext-util-MixedCollection-method-reorder",
1560       "shortDoc": "Reorders each of the items based on a mapping from old index to new index. Internally this\njust translates into a sor..."
1561     },
1562     {
1563       "tagname": "method",
1564       "name": "replace",
1565       "member": "Ext.util.AbstractMixedCollection",
1566       "doc": "<p>Replaces an item in the collection. Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-replace\" rel=\"Ext.draw.CompositeSprite-event-replace\" class=\"docClass\">replace</a> event when complete.</p>\n",
1567       "params": [
1568         {
1569           "type": "String",
1570           "name": "key",
1571           "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.draw.CompositeSprite-method-getKey\" rel=\"Ext.draw.CompositeSprite-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",
1572           "optional": false
1573         },
1574         {
1575           "type": "Object",
1576           "name": "o",
1577           "doc": "<p>{Object} o (optional) If the first parameter passed was a key, the item to associate\nwith that key.</p>\n",
1578           "optional": true
1579         }
1580       ],
1581       "return": {
1582         "type": "Object",
1583         "doc": "<p>The new item.</p>\n"
1584       },
1585       "private": false,
1586       "static": false,
1587       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1588       "linenr": 135,
1589       "html_filename": "AbstractMixedCollection.html",
1590       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-replace",
1591       "shortDoc": "<p>Replaces an item in the collection. Fires the <a href=\"#/api/Ext.draw.CompositeSprite-event-replace\" rel=\"Ext.draw.CompositeSprite-event-replace\" class=\"docClass\">replace</a> event when complete.</p>\n"
1592     },
1593     {
1594       "tagname": "method",
1595       "name": "resumeEvents",
1596       "member": "Ext.util.Observable",
1597       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.draw.CompositeSprite-method-suspendEvents\" rel=\"Ext.draw.CompositeSprite-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",
1598       "params": [
1599
1600       ],
1601       "return": {
1602         "type": "void",
1603         "doc": "\n"
1604       },
1605       "private": false,
1606       "static": false,
1607       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1608       "linenr": 502,
1609       "html_filename": "Observable.html",
1610       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1611       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
1612     },
1613     {
1614       "tagname": "method",
1615       "name": "sequenceFx",
1616       "member": "Ext.util.Animate",
1617       "doc": "<p>Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence.  This is the opposite of <a href=\"#/api/Ext.draw.CompositeSprite-method-syncFx\" rel=\"Ext.draw.CompositeSprite-method-syncFx\" class=\"docClass\">syncFx</a>.</p>\n",
1618       "params": [
1619
1620       ],
1621       "return": {
1622         "type": "Object",
1623         "doc": "<p>this</p>\n"
1624       },
1625       "private": false,
1626       "static": false,
1627       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1628       "linenr": 357,
1629       "html_filename": "Animate.html",
1630       "href": "Animate.html#Ext-util-Animate-method-sequenceFx",
1631       "shortDoc": "Ensures that all effects queued after sequenceFx is called on this object are\nrun in sequence.  This is the opposite ..."
1632     },
1633     {
1634       "tagname": "method",
1635       "name": "setAttributes",
1636       "member": "Ext.draw.CompositeSprite",
1637       "doc": "<p>Iterates through all sprites calling\n <code>setAttributes</code> on each one. For more information\n <a href=\"#/api/Ext.draw.Sprite\" rel=\"Ext.draw.Sprite\" class=\"docClass\">Ext.draw.Sprite</a> provides a description of the\n attributes that can be set with this method.</p>\n",
1638       "params": [
1639         {
1640           "type": "Object",
1641           "name": "attrs",
1642           "doc": "\n",
1643           "optional": false
1644         },
1645         {
1646           "type": "Object",
1647           "name": "redraw",
1648           "doc": "\n",
1649           "optional": false
1650         }
1651       ],
1652       "return": {
1653         "type": "void",
1654         "doc": "\n"
1655       },
1656       "private": false,
1657       "static": false,
1658       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
1659       "linenr": 159,
1660       "html_filename": "CompositeSprite.html",
1661       "href": "CompositeSprite.html#Ext-draw-CompositeSprite-method-setAttributes",
1662       "shortDoc": "Iterates through all sprites calling\n setAttributes on each one. For more information\n Ext.draw.Sprite provides a des..."
1663     },
1664     {
1665       "tagname": "method",
1666       "name": "show",
1667       "member": "Ext.draw.CompositeSprite",
1668       "doc": "<p>Shows all sprites. If the first parameter of the method is true\nthen a redraw will be forced for each sprite.</p>\n",
1669       "params": [
1670         {
1671           "type": "Object",
1672           "name": "redraw",
1673           "doc": "\n",
1674           "optional": false
1675         }
1676       ],
1677       "return": {
1678         "type": "void",
1679         "doc": "\n"
1680       },
1681       "private": false,
1682       "static": false,
1683       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
1684       "linenr": 191,
1685       "html_filename": "CompositeSprite.html",
1686       "href": "CompositeSprite.html#Ext-draw-CompositeSprite-method-show",
1687       "shortDoc": "<p>Shows all sprites. If the first parameter of the method is true\nthen a redraw will be forced for each sprite.</p>\n"
1688     },
1689     {
1690       "tagname": "method",
1691       "name": "sort",
1692       "member": "Ext.util.Sortable",
1693       "doc": "<p>Sorts the data in the Store by one or more of its properties. Example usage:</p>\n\n\n<pre><code>//sort by a single field\nmyStore.sort('myField', 'DESC');\n\n//sorting by multiple fields\nmyStore.sort([\n    {\n        property : 'age',\n        direction: 'ASC'\n    },\n    {\n        property : 'name',\n        direction: 'DESC'\n    }\n]);\n</code></pre>\n\n\n<p>Internally, Store converts the passed arguments into an array of <a href=\"#/api/Ext.util.Sorter\" rel=\"Ext.util.Sorter\" class=\"docClass\">Ext.util.Sorter</a> instances, and delegates the actual\nsorting to its internal <a href=\"#/api/Ext.util.MixedCollection\" rel=\"Ext.util.MixedCollection\" class=\"docClass\">Ext.util.MixedCollection</a>.</p>\n\n\n<p>When passing a single string argument to sort, Store maintains a ASC/DESC toggler per field, so this code:</p>\n\n\n<pre><code>store.sort('myField');\nstore.sort('myField');\n     </code></pre>\n\n\n<p>Is equivalent to this code, because Store handles the toggling automatically:</p>\n\n\n<pre><code>store.sort('myField', 'ASC');\nstore.sort('myField', 'DESC');\n</code></pre>\n\n",
1694       "params": [
1695         {
1696           "type": "String|Array",
1697           "name": "sorters",
1698           "doc": "<p>Either a string name of one of the fields in this Store's configured <a href=\"#/api/Ext.data.Model\" rel=\"Ext.data.Model\" class=\"docClass\">Model</a>,\nor an Array of sorter configurations.</p>\n",
1699           "optional": false
1700         },
1701         {
1702           "type": "String",
1703           "name": "direction",
1704           "doc": "<p>The overall direction to sort the data by. Defaults to \"ASC\".</p>\n",
1705           "optional": false
1706         },
1707         {
1708           "type": "Object",
1709           "name": "where",
1710           "doc": "\n",
1711           "optional": false
1712         },
1713         {
1714           "type": "Object",
1715           "name": "doSort",
1716           "doc": "\n",
1717           "optional": false
1718         }
1719       ],
1720       "return": {
1721         "type": "void",
1722         "doc": "\n"
1723       },
1724       "private": false,
1725       "static": false,
1726       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Sortable.js",
1727       "linenr": 59,
1728       "html_filename": "Sortable.html",
1729       "href": "Sortable.html#Ext-util-Sortable-method-sort",
1730       "shortDoc": "Sorts the data in the Store by one or more of its properties. Example usage:\n\n\n//sort by a single field\nmyStore.sort(..."
1731     },
1732     {
1733       "tagname": "method",
1734       "name": "sortBy",
1735       "member": "Ext.util.MixedCollection",
1736       "doc": "<p>Sorts the collection by a single sorter function</p>\n",
1737       "params": [
1738         {
1739           "type": "Function",
1740           "name": "sorterFn",
1741           "doc": "<p>The function to sort by</p>\n",
1742           "optional": false
1743         }
1744       ],
1745       "return": {
1746         "type": "void",
1747         "doc": "\n"
1748       },
1749       "private": false,
1750       "static": false,
1751       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/MixedCollection.js",
1752       "linenr": 112,
1753       "html_filename": "MixedCollection.html",
1754       "href": "MixedCollection.html#Ext-util-MixedCollection-method-sortBy",
1755       "shortDoc": "<p>Sorts the collection by a single sorter function</p>\n"
1756     },
1757     {
1758       "tagname": "method",
1759       "name": "sortByKey",
1760       "member": "Ext.util.MixedCollection",
1761       "doc": "<p>Sorts this collection by <b>key</b>s.</p>\n",
1762       "params": [
1763         {
1764           "type": "String",
1765           "name": "direction",
1766           "doc": "<p>(optional) 'ASC' or 'DESC'. Defaults to 'ASC'.</p>\n",
1767           "optional": true
1768         },
1769         {
1770           "type": "Function",
1771           "name": "fn",
1772           "doc": "<p>(optional) Comparison function that defines the sort order.\nDefaults to sorting by case insensitive string.</p>\n",
1773           "optional": true
1774         }
1775       ],
1776       "return": {
1777         "type": "void",
1778         "doc": "\n"
1779       },
1780       "private": false,
1781       "static": false,
1782       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/MixedCollection.js",
1783       "linenr": 191,
1784       "html_filename": "MixedCollection.html",
1785       "href": "MixedCollection.html#Ext-util-MixedCollection-method-sortByKey",
1786       "shortDoc": "<p>Sorts this collection by <b>key</b>s.</p>\n"
1787     },
1788     {
1789       "tagname": "method",
1790       "name": "stopAnimation",
1791       "member": "Ext.util.Animate",
1792       "doc": "<p>Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.</p>\n",
1793       "params": [
1794
1795       ],
1796       "return": {
1797         "type": "Ext.core.Element",
1798         "doc": "<p>The Element</p>\n"
1799       },
1800       "private": false,
1801       "static": false,
1802       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1803       "linenr": 335,
1804       "html_filename": "Animate.html",
1805       "href": "Animate.html#Ext-util-Animate-method-stopAnimation",
1806       "shortDoc": "Stops any running effects and clears this object's internal effects queue if it contains\nany additional effects that ..."
1807     },
1808     {
1809       "tagname": "method",
1810       "name": "stopFx",
1811       "member": "Ext.util.Animate",
1812       "doc": "<p>@deprecated 4.0 Replaced by <a href=\"#/api/Ext.draw.CompositeSprite-method-stopAnimation\" rel=\"Ext.draw.CompositeSprite-method-stopAnimation\" class=\"docClass\">stopAnimation</a>\nStops any running effects and clears this object's internal effects queue if it contains\nany additional effects that haven't started yet.</p>\n",
1813       "params": [
1814
1815       ],
1816       "return": {
1817         "type": "Ext.core.Element",
1818         "doc": "<p>The Element</p>\n"
1819       },
1820       "private": false,
1821       "static": false,
1822       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1823       "linenr": 326,
1824       "html_filename": "Animate.html",
1825       "href": "Animate.html#Ext-util-Animate-method-stopFx",
1826       "shortDoc": "@deprecated 4.0 Replaced by stopAnimation\nStops any running effects and clears this object's internal effects queue i..."
1827     },
1828     {
1829       "tagname": "method",
1830       "name": "sum",
1831       "member": "Ext.util.AbstractMixedCollection",
1832       "doc": "<p>Collects all of the values of the given property and returns their sum</p>\n",
1833       "params": [
1834         {
1835           "type": "String",
1836           "name": "property",
1837           "doc": "<p>The property to sum by</p>\n",
1838           "optional": false
1839         },
1840         {
1841           "type": "String",
1842           "name": "root",
1843           "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",
1844           "optional": false
1845         },
1846         {
1847           "type": "Number",
1848           "name": "start",
1849           "doc": "<p>(optional) The record index to start at (defaults to <tt>0</tt>)</p>\n",
1850           "optional": true
1851         },
1852         {
1853           "type": "Number",
1854           "name": "end",
1855           "doc": "<p>(optional) The record index to end at (defaults to <tt>-1</tt>)</p>\n",
1856           "optional": true
1857         }
1858       ],
1859       "return": {
1860         "type": "Number",
1861         "doc": "<p>The total</p>\n"
1862       },
1863       "private": false,
1864       "static": false,
1865       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
1866       "linenr": 464,
1867       "html_filename": "AbstractMixedCollection.html",
1868       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-method-sum",
1869       "shortDoc": "<p>Collects all of the values of the given property and returns their sum</p>\n"
1870     },
1871     {
1872       "tagname": "method",
1873       "name": "suspendEvents",
1874       "member": "Ext.util.Observable",
1875       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.draw.CompositeSprite-method-resumeEvents\" rel=\"Ext.draw.CompositeSprite-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1876       "params": [
1877         {
1878           "type": "Boolean",
1879           "name": "queueSuspended",
1880           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.draw.CompositeSprite-method-resumeEvents\" rel=\"Ext.draw.CompositeSprite-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
1881           "optional": false
1882         }
1883       ],
1884       "return": {
1885         "type": "void",
1886         "doc": "\n"
1887       },
1888       "private": false,
1889       "static": false,
1890       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1891       "linenr": 490,
1892       "html_filename": "Observable.html",
1893       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1894       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.draw.CompositeSprite-method-resumeEvents\" rel=\"Ext.draw.CompositeSprite-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
1895     },
1896     {
1897       "tagname": "method",
1898       "name": "syncFx",
1899       "member": "Ext.util.Animate",
1900       "doc": "<p>Ensures that all effects queued after syncFx is called on this object are\nrun concurrently.  This is the opposite of <a href=\"#/api/Ext.draw.CompositeSprite-method-sequenceFx\" rel=\"Ext.draw.CompositeSprite-method-sequenceFx\" class=\"docClass\">sequenceFx</a>.</p>\n",
1901       "params": [
1902
1903       ],
1904       "return": {
1905         "type": "Object",
1906         "doc": "<p>this</p>\n"
1907       },
1908       "private": false,
1909       "static": false,
1910       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/util/Animate.js",
1911       "linenr": 345,
1912       "html_filename": "Animate.html",
1913       "href": "Animate.html#Ext-util-Animate-method-syncFx",
1914       "shortDoc": "Ensures that all effects queued after syncFx is called on this object are\nrun concurrently.  This is the opposite of ..."
1915     },
1916     {
1917       "tagname": "method",
1918       "name": "un",
1919       "member": "Ext.util.Observable",
1920       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.draw.CompositeSprite-method-removeListener\" rel=\"Ext.draw.CompositeSprite-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
1921       "params": [
1922         {
1923           "type": "String",
1924           "name": "eventName",
1925           "doc": "<p>The type of event the handler was associated with.</p>\n",
1926           "optional": false
1927         },
1928         {
1929           "type": "Function",
1930           "name": "handler",
1931           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.draw.CompositeSprite-method-addListener\" rel=\"Ext.draw.CompositeSprite-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
1932           "optional": false
1933         },
1934         {
1935           "type": "Object",
1936           "name": "scope",
1937           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1938           "optional": true
1939         }
1940       ],
1941       "return": {
1942         "type": "void",
1943         "doc": "\n"
1944       },
1945       "private": false,
1946       "static": false,
1947       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1948       "linenr": 608,
1949       "html_filename": "Observable.html",
1950       "href": "Observable.html#Ext-util-Observable-method-un",
1951       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.draw.CompositeSprite-method-removeListener\" rel=\"Ext.draw.CompositeSprite-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
1952     }
1953   ],
1954   "property": [
1955     {
1956       "tagname": "property",
1957       "name": "defaultSortDirection",
1958       "member": "Ext.util.Sortable",
1959       "type": "String",
1960       "doc": "<p>The default sort direction to use if one is not specified (defaults to \"ASC\")</p>\n",
1961       "private": false,
1962       "static": false,
1963       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Sortable.js",
1964       "linenr": 20,
1965       "html_filename": "Sortable.html",
1966       "href": "Sortable.html#Ext-util-Sortable-property-defaultSortDirection"
1967     },
1968     {
1969       "tagname": "property",
1970       "name": "isSortable",
1971       "member": "Ext.util.Sortable",
1972       "type": "Boolean",
1973       "doc": "<p>Flag denoting that this object is sortable. Always true.</p>\n",
1974       "private": false,
1975       "static": false,
1976       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Sortable.js",
1977       "linenr": 13,
1978       "html_filename": "Sortable.html",
1979       "href": "Sortable.html#Ext-util-Sortable-property-isSortable"
1980     },
1981     {
1982       "tagname": "property",
1983       "name": "sortRoot",
1984       "member": "Ext.util.Sortable",
1985       "type": "String",
1986       "doc": "<p>The property in each item that contains the data to sort. (defaults to null)</p>\n",
1987       "private": false,
1988       "static": false,
1989       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Sortable.js",
1990       "linenr": 31,
1991       "html_filename": "Sortable.html",
1992       "href": "Sortable.html#Ext-util-Sortable-property-sortRoot"
1993     },
1994     {
1995       "tagname": "property",
1996       "name": "sorters",
1997       "member": "Ext.util.Sortable",
1998       "type": "Ext.util.MixedCollection",
1999       "doc": "<p>The collection of <a href=\"#/api/Ext.util.Sorter\" rel=\"Ext.util.Sorter\" class=\"docClass\">Sorters</a> currently applied to this Store</p>\n",
2000       "private": false,
2001       "static": false,
2002       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Sortable.js",
2003       "linenr": 45,
2004       "html_filename": "Sortable.html",
2005       "href": "Sortable.html#Ext-util-Sortable-property-sorters"
2006     }
2007   ],
2008   "event": [
2009     {
2010       "tagname": "event",
2011       "name": "add",
2012       "member": "Ext.util.AbstractMixedCollection",
2013       "doc": "<p>Fires when an item is added to the collection.</p>\n",
2014       "params": [
2015         {
2016           "type": "Number",
2017           "name": "index",
2018           "doc": "<p>The index at which the item was added.</p>\n",
2019           "optional": false
2020         },
2021         {
2022           "type": "Object",
2023           "name": "o",
2024           "doc": "<p>The item added.</p>\n",
2025           "optional": false
2026         },
2027         {
2028           "type": "String",
2029           "name": "key",
2030           "doc": "<p>The key associated with the added item.</p>\n",
2031           "optional": false
2032         }
2033       ],
2034       "private": false,
2035       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
2036       "linenr": 26,
2037       "html_filename": "AbstractMixedCollection.html",
2038       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-add",
2039       "shortDoc": "<p>Fires when an item is added to the collection.</p>\n"
2040     },
2041     {
2042       "tagname": "event",
2043       "name": "clear",
2044       "member": "Ext.util.AbstractMixedCollection",
2045       "doc": "<p>Fires when the collection is cleared.</p>\n",
2046       "params": [
2047
2048       ],
2049       "private": false,
2050       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
2051       "linenr": 20,
2052       "html_filename": "AbstractMixedCollection.html",
2053       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-clear",
2054       "shortDoc": "<p>Fires when the collection is cleared.</p>\n"
2055     },
2056     {
2057       "tagname": "event",
2058       "name": "remove",
2059       "member": "Ext.util.AbstractMixedCollection",
2060       "doc": "<p>Fires when an item is removed from the collection.</p>\n",
2061       "params": [
2062         {
2063           "type": "Object",
2064           "name": "o",
2065           "doc": "<p>The item being removed.</p>\n",
2066           "optional": false
2067         },
2068         {
2069           "type": "String",
2070           "name": "key",
2071           "doc": "<p>(optional) The key associated with the removed item.</p>\n",
2072           "optional": true
2073         }
2074       ],
2075       "private": false,
2076       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
2077       "linenr": 44,
2078       "html_filename": "AbstractMixedCollection.html",
2079       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-remove",
2080       "shortDoc": "<p>Fires when an item is removed from the collection.</p>\n"
2081     },
2082     {
2083       "tagname": "event",
2084       "name": "replace",
2085       "member": "Ext.util.AbstractMixedCollection",
2086       "doc": "<p>Fires when an item is replaced in the collection.</p>\n",
2087       "params": [
2088         {
2089           "type": "String",
2090           "name": "key",
2091           "doc": "<p>he key associated with the new added.</p>\n",
2092           "optional": false
2093         },
2094         {
2095           "type": "Object",
2096           "name": "old",
2097           "doc": "<p>The item being replaced.</p>\n",
2098           "optional": false
2099         },
2100         {
2101           "type": "Object",
2102           "name": "new",
2103           "doc": "<p>The new item.</p>\n",
2104           "optional": false
2105         }
2106       ],
2107       "private": false,
2108       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/AbstractMixedCollection.js",
2109       "linenr": 35,
2110       "html_filename": "AbstractMixedCollection.html",
2111       "href": "AbstractMixedCollection.html#Ext-util-AbstractMixedCollection-event-replace",
2112       "shortDoc": "<p>Fires when an item is replaced in the collection.</p>\n"
2113     }
2114   ],
2115   "filename": "/Users/nick/Projects/sencha/SDK/platform/src/draw/CompositeSprite.js",
2116   "linenr": 1,
2117   "html_filename": "CompositeSprite.html",
2118   "href": "CompositeSprite.html#Ext-draw-CompositeSprite",
2119   "cssVar": [
2120
2121   ],
2122   "cssMixin": [
2123
2124   ],
2125   "component": false,
2126   "superclasses": [
2127     "Ext.util.AbstractMixedCollection",
2128     "Ext.util.MixedCollection"
2129   ],
2130   "subclasses": [
2131     "Ext.chart.LegendItem"
2132   ],
2133   "mixedInto": [
2134
2135   ],
2136   "allMixins": [
2137     "Ext.util.Animate",
2138     "Ext.util.Sortable",
2139     "Ext.util.Observable"
2140   ]
2141 });