Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.data.AbstractStore.js
1 Ext.data.JsonP.Ext_data_AbstractStore({
2   "allMixins": [
3     "Ext.util.Observable",
4     "Ext.util.Sortable"
5   ],
6   "deprecated": null,
7   "docauthor": null,
8   "members": {
9     "cfg": [
10       {
11         "type": "Boolean/Object",
12         "deprecated": null,
13         "alias": null,
14         "protected": false,
15         "tagname": "cfg",
16         "href": "AbstractStore.html#Ext-data-AbstractStore-cfg-autoLoad",
17         "shortDoc": "If data is not specified, and if autoLoad is true or an Object, this store's load method\nis automatically called afte...",
18         "static": false,
19         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
20         "private": false,
21         "name": "autoLoad",
22         "owner": "Ext.data.AbstractStore",
23         "doc": "<p>If data is not specified, and if autoLoad is true or an Object, this store's load method\nis automatically called after creation. If the value of autoLoad is an Object, this Object will be passed to the store's\nload method. Defaults to false.</p>\n",
24         "linenr": 54,
25         "html_filename": "AbstractStore.html"
26       },
27       {
28         "type": "Boolean",
29         "deprecated": null,
30         "alias": null,
31         "protected": false,
32         "tagname": "cfg",
33         "href": "AbstractStore.html#Ext-data-AbstractStore-cfg-autoSync",
34         "shortDoc": "True to automatically sync the Store with its Proxy after every edit to one of its Records. ...",
35         "static": false,
36         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
37         "private": false,
38         "name": "autoSync",
39         "owner": "Ext.data.AbstractStore",
40         "doc": "<p>True to automatically sync the Store with its Proxy after every edit to one of its Records.\nDefaults to false.</p>\n",
41         "linenr": 61,
42         "html_filename": "AbstractStore.html"
43       },
44       {
45         "type": "Array",
46         "deprecated": null,
47         "alias": null,
48         "protected": false,
49         "tagname": "cfg",
50         "href": "AbstractStore.html#Ext-data-AbstractStore-cfg-fields",
51         "shortDoc": "This may be used in place of specifying a model configuration. ...",
52         "static": false,
53         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
54         "private": false,
55         "name": "fields",
56         "owner": "Ext.data.AbstractStore",
57         "doc": "<p>This may be used in place of specifying a model configuration. The fields should be a\nset of <a href=\"#/api/Ext.data.Field\" rel=\"Ext.data.Field\" class=\"docClass\">Ext.data.Field</a> configuration objects. The store will automatically create a <a href=\"#/api/Ext.data.Model\" rel=\"Ext.data.Model\" class=\"docClass\">Ext.data.Model</a>\nwith these fields. In general this configuration option should be avoided, it exists for the purposes of\nbackwards compatibility. For anything more complicated, such as specifying a particular id property or\nassocations, a <a href=\"#/api/Ext.data.Model\" rel=\"Ext.data.Model\" class=\"docClass\">Ext.data.Model</a> should be defined and specified for the model config.</p>\n",
58         "linenr": 124,
59         "html_filename": "AbstractStore.html"
60       },
61       {
62         "type": "Object",
63         "deprecated": null,
64         "alias": null,
65         "protected": false,
66         "tagname": "cfg",
67         "href": "Observable.html#Ext-util-Observable-cfg-listeners",
68         "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
69         "static": false,
70         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
71         "private": false,
72         "name": "listeners",
73         "owner": "Ext.util.Observable",
74         "doc": "<p>A config object containing one or more event handlers to be added to this object during initialization. This\nshould be a valid listeners config object as specified in the <a href=\"#/api/Ext.data.AbstractStore-method-addListener\" rel=\"Ext.data.AbstractStore-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple\nhandlers at once.</p>\n\n<p><strong>DOM events from ExtJS <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></strong></p>\n\n<p>While <em>some</em> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this is usually\nonly done when extra value can be added. For example the <a href=\"#/api/Ext.view.View\" rel=\"Ext.view.View\" class=\"docClass\">DataView</a>'s <strong><code><a href=\"#/api/Ext.view.View-event-itemclick\" rel=\"Ext.view.View-event-itemclick\" class=\"docClass\">itemclick</a></code></strong> event passing the node clicked on. To access DOM events directly from a\nchild element of a Component, we need to specify the <code>element</code> option to identify the Component property to add a\nDOM listener to:</p>\n\n<pre><code>new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n</code></pre>\n",
75         "linenr": 102,
76         "html_filename": "Observable.html"
77       },
78       {
79         "type": "String/Ext.data.proxy.Proxy/Object",
80         "deprecated": null,
81         "alias": null,
82         "protected": false,
83         "tagname": "cfg",
84         "href": "AbstractStore.html#Ext-data-AbstractStore-cfg-proxy",
85         "shortDoc": "The Proxy to use for this Store. ...",
86         "static": false,
87         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
88         "private": false,
89         "name": "proxy",
90         "owner": "Ext.data.AbstractStore",
91         "doc": "<p>The Proxy to use for this Store. This can be either a string, a config\nobject or a Proxy instance - see <a href=\"#/api/Ext.data.AbstractStore-method-setProxy\" rel=\"Ext.data.AbstractStore-method-setProxy\" class=\"docClass\">setProxy</a> for details.</p>\n",
92         "linenr": 49,
93         "html_filename": "AbstractStore.html"
94       },
95       {
96         "type": "String",
97         "deprecated": null,
98         "alias": null,
99         "protected": false,
100         "tagname": "cfg",
101         "href": "AbstractStore.html#Ext-data-AbstractStore-cfg-storeId",
102         "shortDoc": "Optional unique identifier for this store. ...",
103         "static": false,
104         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
105         "private": false,
106         "name": "storeId",
107         "owner": "Ext.data.AbstractStore",
108         "doc": "<p>Optional unique identifier for this store. If present, this Store will be registered with\nthe <a href=\"#/api/Ext.data.StoreManager\" rel=\"Ext.data.StoreManager\" class=\"docClass\">Ext.data.StoreManager</a>, making it easy to reuse elsewhere. Defaults to undefined.</p>\n",
109         "linenr": 119,
110         "html_filename": "AbstractStore.html"
111       }
112     ],
113     "method": [
114       {
115         "deprecated": null,
116         "alias": null,
117         "protected": false,
118         "tagname": "method",
119         "href": "Observable.html#Ext-util-Observable-method-addEvents",
120         "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
121         "static": false,
122         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
123         "private": false,
124         "params": [
125           {
126             "type": "Object/String",
127             "optional": false,
128             "doc": "<p>Either an object with event names as properties with a value of <code>true</code> or the first\nevent name string if multiple event names are being passed as separate parameters. Usage:</p>\n\n<pre><code>this.addEvents({\n    storeloaded: true,\n    storecleared: true\n});\n</code></pre>\n",
129             "name": "o"
130           },
131           {
132             "type": "String...",
133             "optional": false,
134             "doc": "<p>Optional additional event names if multiple event names are being passed as separate\nparameters. Usage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n",
135             "name": "more"
136           }
137         ],
138         "name": "addEvents",
139         "owner": "Ext.util.Observable",
140         "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
141         "linenr": 494,
142         "return": {
143           "type": "void",
144           "doc": "\n"
145         },
146         "html_filename": "Observable.html"
147       },
148       {
149         "deprecated": null,
150         "alias": null,
151         "protected": false,
152         "tagname": "method",
153         "href": "Observable.html#Ext-util-Observable-method-addListener",
154         "shortDoc": "Appends an event handler to this object. ...",
155         "static": false,
156         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
157         "private": false,
158         "params": [
159           {
160             "type": "String",
161             "optional": false,
162             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
163             "name": "eventName"
164           },
165           {
166             "type": "Function",
167             "optional": false,
168             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.data.AbstractStore-method-fireEvent\" rel=\"Ext.data.AbstractStore-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
169             "name": "handler"
170           },
171           {
172             "type": "Object",
173             "optional": true,
174             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the handler function is executed. <strong>If\nomitted, defaults to the object which fired the event.</strong></p>\n",
175             "name": "scope"
176           },
177           {
178             "type": "Object",
179             "optional": true,
180             "doc": "<p>(optional) An object containing handler configuration.</p>\n\n<p><strong>Note:</strong> Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.</p>\n\n<p>This object may contain any of the following properties:</p>\n\n<ul>\n<li><p><strong>scope</strong> : Object</p>\n\n<p>The scope (<code>this</code> reference) in which the handler function is executed. <strong>If omitted, defaults to the object\nwhich fired the event.</strong></p></li>\n<li><p><strong>delay</strong> : Number</p>\n\n<p>The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>\n<li><p><strong>single</strong> : Boolean</p>\n\n<p>True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>\n<li><p><strong>buffer</strong> : Number</p>\n\n<p>Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is <em>not</em> invoked, but the new\nhandler is scheduled in its place.</p></li>\n<li><p><strong>target</strong> : Observable</p>\n\n<p>Only call the handler if the event was fired on the target Observable, <em>not</em> if the event was bubbled up from a\nchild Observable.</p></li>\n<li><p><strong>element</strong> : String</p>\n\n<p><strong>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</strong> The name of a Component\nproperty which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of\n<a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:</p>\n\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></li>\n</ul>\n\n\n<p><strong>Combining Options</strong></p>\n\n<p>Using the options argument, it is possible to combine different types of listeners:</p>\n\n<p>A delayed, one-time listener.</p>\n\n<pre><code>myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n</code></pre>\n\n<p><strong>Attaching multiple handlers in 1 call</strong></p>\n\n<p>The method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>\n\n<p>One can also specify options for each event handler separately:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n</code></pre>\n",
181             "name": "options"
182           }
183         ],
184         "name": "addListener",
185         "owner": "Ext.util.Observable",
186         "doc": "<p>Appends an event handler to this object.</p>\n",
187         "linenr": 278,
188         "return": {
189           "type": "void",
190           "doc": "\n"
191         },
192         "html_filename": "Observable.html"
193       },
194       {
195         "deprecated": null,
196         "alias": null,
197         "protected": false,
198         "tagname": "method",
199         "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
200         "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
201         "static": false,
202         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
203         "private": false,
204         "params": [
205           {
206             "type": "Observable/Element",
207             "optional": false,
208             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
209             "name": "item"
210           },
211           {
212             "type": "Object/String",
213             "optional": false,
214             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
215             "name": "ename"
216           },
217           {
218             "type": "Function",
219             "optional": true,
220             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
221             "name": "fn"
222           },
223           {
224             "type": "Object",
225             "optional": true,
226             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
227             "name": "scope"
228           },
229           {
230             "type": "Object",
231             "optional": true,
232             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the\n<a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
233             "name": "opt"
234           }
235         ],
236         "name": "addManagedListener",
237         "owner": "Ext.util.Observable",
238         "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
239         "linenr": 156,
240         "return": {
241           "type": "void",
242           "doc": "\n"
243         },
244         "html_filename": "Observable.html"
245       },
246       {
247         "deprecated": null,
248         "alias": null,
249         "protected": false,
250         "tagname": "method",
251         "href": "Base3.html#Ext-Base-method-addStatics",
252         "shortDoc": "Add / override static properties of this class. ...",
253         "static": true,
254         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
255         "private": false,
256         "params": [
257           {
258             "type": "Object",
259             "optional": false,
260             "doc": "\n",
261             "name": "members"
262           }
263         ],
264         "name": "addStatics",
265         "owner": "Ext.Base",
266         "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
267         "linenr": 388,
268         "return": {
269           "type": "Ext.Base",
270           "doc": "<p>this</p>\n"
271         },
272         "html_filename": "Base3.html"
273       },
274       {
275         "deprecated": null,
276         "alias": null,
277         "protected": false,
278         "tagname": "method",
279         "href": "Base3.html#Ext-Base-method-callOverridden",
280         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
281         "static": false,
282         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
283         "private": false,
284         "params": [
285           {
286             "type": "Array/Arguments",
287             "optional": false,
288             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
289             "name": "args"
290           }
291         ],
292         "name": "callOverridden",
293         "owner": "Ext.Base",
294         "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
295         "linenr": 269,
296         "return": {
297           "type": "Mixed",
298           "doc": "<p>Returns the result after calling the overridden method</p>\n"
299         },
300         "html_filename": "Base3.html"
301       },
302       {
303         "deprecated": null,
304         "alias": null,
305         "protected": true,
306         "tagname": "method",
307         "href": "Base3.html#Ext-Base-method-callParent",
308         "shortDoc": "Call the parent's overridden method. ...",
309         "static": false,
310         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
311         "private": false,
312         "params": [
313           {
314             "type": "Array/Arguments",
315             "optional": false,
316             "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
317             "name": "args"
318           }
319         ],
320         "name": "callParent",
321         "owner": "Ext.Base",
322         "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
323         "linenr": 124,
324         "return": {
325           "type": "Mixed",
326           "doc": "<p>Returns the result from the superclass' method</p>\n"
327         },
328         "html_filename": "Base3.html"
329       },
330       {
331         "deprecated": null,
332         "alias": null,
333         "protected": false,
334         "tagname": "method",
335         "href": "Observable.html#Ext-util-Observable-method-capture",
336         "shortDoc": "Starts capture on the specified Observable. ...",
337         "static": true,
338         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
339         "private": false,
340         "params": [
341           {
342             "type": "Observable",
343             "optional": false,
344             "doc": "<p>The Observable to capture events from.</p>\n",
345             "name": "o"
346           },
347           {
348             "type": "Function",
349             "optional": false,
350             "doc": "<p>The function to call when an event is fired.</p>\n",
351             "name": "fn"
352           },
353           {
354             "type": "Object",
355             "optional": true,
356             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
357             "name": "scope"
358           }
359         ],
360         "name": "capture",
361         "owner": "Ext.util.Observable",
362         "doc": "<p>Starts capture on the specified Observable. All events will be passed to the supplied function with the event\nname + standard signature of the event <strong>before</strong> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
363         "linenr": 54,
364         "return": {
365           "type": "void",
366           "doc": "\n"
367         },
368         "html_filename": "Observable.html"
369       },
370       {
371         "deprecated": null,
372         "alias": null,
373         "protected": false,
374         "tagname": "method",
375         "href": "Observable.html#Ext-util-Observable-method-clearListeners",
376         "shortDoc": "Removes all listeners for this object including the managed listeners ...",
377         "static": false,
378         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
379         "private": false,
380         "params": [
381
382         ],
383         "name": "clearListeners",
384         "owner": "Ext.util.Observable",
385         "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
386         "linenr": 425,
387         "return": {
388           "type": "void",
389           "doc": "\n"
390         },
391         "html_filename": "Observable.html"
392       },
393       {
394         "deprecated": null,
395         "alias": null,
396         "protected": false,
397         "tagname": "method",
398         "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
399         "shortDoc": "Removes all managed listeners for this object. ...",
400         "static": false,
401         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
402         "private": false,
403         "params": [
404
405         ],
406         "name": "clearManagedListeners",
407         "owner": "Ext.util.Observable",
408         "doc": "<p>Removes all managed listeners for this object.</p>\n",
409         "linenr": 454,
410         "return": {
411           "type": "void",
412           "doc": "\n"
413         },
414         "html_filename": "Observable.html"
415       },
416       {
417         "deprecated": null,
418         "alias": null,
419         "protected": false,
420         "tagname": "method",
421         "href": "Base3.html#Ext-Base-method-create",
422         "shortDoc": "Create a new instance of this Class. ...",
423         "static": true,
424         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
425         "private": false,
426         "params": [
427
428         ],
429         "name": "create",
430         "owner": "Ext.Base",
431         "doc": "<p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n",
432         "linenr": 329,
433         "return": {
434           "type": "Object",
435           "doc": "<p>the created instance.</p>\n"
436         },
437         "html_filename": "Base3.html"
438       },
439       {
440         "deprecated": null,
441         "alias": null,
442         "protected": false,
443         "tagname": "method",
444         "href": "Base3.html#Ext-Base-method-createAlias",
445         "shortDoc": "Create aliases for existing prototype methods. ...",
446         "static": true,
447         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
448         "private": false,
449         "params": [
450           {
451             "type": "String/Object",
452             "optional": false,
453             "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
454             "name": "alias"
455           },
456           {
457             "type": "String/Object",
458             "optional": false,
459             "doc": "<p>The original method name</p>\n",
460             "name": "origin"
461           }
462         ],
463         "name": "createAlias",
464         "owner": "Ext.Base",
465         "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
466         "linenr": 648,
467         "return": {
468           "type": "void",
469           "doc": "\n"
470         },
471         "html_filename": "Base3.html"
472       },
473       {
474         "deprecated": null,
475         "alias": null,
476         "protected": false,
477         "tagname": "method",
478         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
479         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
480         "static": false,
481         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
482         "private": false,
483         "params": [
484           {
485             "type": "String/[String]",
486             "optional": false,
487             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
488             "name": "events"
489           }
490         ],
491         "name": "enableBubble",
492         "owner": "Ext.util.Observable",
493         "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling <code>this.getBubbleTarget()</code> if\npresent. There is no implementation in the Observable base class.</p>\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers.\nSee <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default implementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the\nComponent's immediate owner. But if a known target is required, this can be overridden to access the\nrequired target more quickly.</p>\n\n<p>Example:</p>\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n        this.enableBubble('change');\n    }),\n\n    //  We know that we want Field's events to bubble directly to the FormPanel.\n    getBubbleTarget : function() {\n        if (!this.formPanel) {\n            this.formPanel = this.findParentByType('form');\n        }\n        return this.formPanel;\n    }\n});\n\nvar myForm = new Ext.formPanel({\n    title: 'User Details',\n    items: [{\n        ...\n    }],\n    listeners: {\n        change: function() {\n            // Title goes red if form has been modified.\n            myForm.header.setStyle('color', 'red');\n        }\n    }\n});\n</code></pre>\n",
494         "linenr": 609,
495         "return": {
496           "type": "void",
497           "doc": "\n"
498         },
499         "html_filename": "Observable.html"
500       },
501       {
502         "deprecated": null,
503         "alias": null,
504         "protected": false,
505         "tagname": "method",
506         "href": "Observable.html#Ext-util-Observable-method-fireEvent",
507         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
508         "static": false,
509         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
510         "private": false,
511         "params": [
512           {
513             "type": "String",
514             "optional": false,
515             "doc": "<p>The name of the event to fire.</p>\n",
516             "name": "eventName"
517           },
518           {
519             "type": "Object...",
520             "optional": false,
521             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
522             "name": "args"
523           }
524         ],
525         "name": "fireEvent",
526         "owner": "Ext.util.Observable",
527         "doc": "<p>Fires the specified event with the passed parameters (minus the event name, plus the <code>options</code> object passed\nto <a href=\"#/api/Ext.data.AbstractStore-method-addListener\" rel=\"Ext.data.AbstractStore-method-addListener\" class=\"docClass\">addListener</a>).</p>\n\n<p>An event may be set to bubble up an Observable parent hierarchy (See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>) by\ncalling <a href=\"#/api/Ext.data.AbstractStore-method-enableBubble\" rel=\"Ext.data.AbstractStore-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
528         "linenr": 233,
529         "return": {
530           "type": "Boolean",
531           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
532         },
533         "html_filename": "Observable.html"
534       },
535       {
536         "deprecated": null,
537         "alias": null,
538         "protected": false,
539         "tagname": "method",
540         "href": "Base3.html#Ext-Base-method-getName",
541         "shortDoc": "Get the current class' name in string format. ...",
542         "static": false,
543         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
544         "private": false,
545         "params": [
546
547         ],
548         "name": "getName",
549         "owner": "Ext.Base",
550         "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
551         "linenr": 631,
552         "return": {
553           "type": "String",
554           "doc": "<p>className</p>\n"
555         },
556         "html_filename": "Base3.html"
557       },
558       {
559         "deprecated": null,
560         "alias": null,
561         "protected": false,
562         "tagname": "method",
563         "href": "AbstractStore.html#Ext-data-AbstractStore-method-getNewRecords",
564         "shortDoc": "Returns all Model instances that are either currently a phantom (e.g. ...",
565         "static": false,
566         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
567         "private": false,
568         "params": [
569
570         ],
571         "name": "getNewRecords",
572         "owner": "Ext.data.AbstractStore",
573         "doc": "<p>Returns all Model instances that are either currently a phantom (e.g. have no id), or have an ID but have not\nyet been saved on this Store (this happens when adding a non-phantom record from another Store into this one)</p>\n",
574         "linenr": 450,
575         "return": {
576           "type": "Array",
577           "doc": "<p>The Model instances</p>\n"
578         },
579         "html_filename": "AbstractStore.html"
580       },
581       {
582         "deprecated": null,
583         "alias": null,
584         "protected": false,
585         "tagname": "method",
586         "href": "AbstractStore.html#Ext-data-AbstractStore-method-getProxy",
587         "shortDoc": "Returns the proxy currently attached to this proxy instance ...",
588         "static": false,
589         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
590         "private": false,
591         "params": [
592
593         ],
594         "name": "getProxy",
595         "owner": "Ext.data.AbstractStore",
596         "doc": "<p>Returns the proxy currently attached to this proxy instance</p>\n",
597         "linenr": 305,
598         "return": {
599           "type": "Ext.data.proxy.Proxy",
600           "doc": "<p>The Proxy instance</p>\n"
601         },
602         "html_filename": "AbstractStore.html"
603       },
604       {
605         "deprecated": null,
606         "alias": null,
607         "protected": false,
608         "tagname": "method",
609         "href": "AbstractStore.html#Ext-data-AbstractStore-method-getRemovedRecords",
610         "shortDoc": "Returns any records that have been removed from the store but not yet destroyed on the proxy. ...",
611         "static": false,
612         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
613         "private": false,
614         "params": [
615
616         ],
617         "name": "getRemovedRecords",
618         "owner": "Ext.data.AbstractStore",
619         "doc": "<p>Returns any records that have been removed from the store but not yet destroyed on the proxy.</p>\n",
620         "linenr": 476,
621         "return": {
622           "type": "Array",
623           "doc": "<p>The removed Model instances</p>\n"
624         },
625         "html_filename": "AbstractStore.html"
626       },
627       {
628         "deprecated": null,
629         "alias": null,
630         "protected": false,
631         "tagname": "method",
632         "href": "AbstractStore.html#Ext-data-AbstractStore-method-getUpdatedRecords",
633         "shortDoc": "Returns all Model instances that have been updated in the Store but not yet synchronized with the Proxy ...",
634         "static": false,
635         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
636         "private": false,
637         "params": [
638
639         ],
640         "name": "getUpdatedRecords",
641         "owner": "Ext.data.AbstractStore",
642         "doc": "<p>Returns all Model instances that have been updated in the Store but not yet synchronized with the Proxy</p>\n",
643         "linenr": 459,
644         "return": {
645           "type": "Array",
646           "doc": "<p>The updated Model instances</p>\n"
647         },
648         "html_filename": "AbstractStore.html"
649       },
650       {
651         "deprecated": null,
652         "alias": null,
653         "protected": false,
654         "tagname": "method",
655         "href": "Observable.html#Ext-util-Observable-method-hasListener",
656         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
657         "static": false,
658         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
659         "private": false,
660         "params": [
661           {
662             "type": "String",
663             "optional": false,
664             "doc": "<p>The name of the event to check for</p>\n",
665             "name": "eventName"
666           }
667         ],
668         "name": "hasListener",
669         "owner": "Ext.util.Observable",
670         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
671         "linenr": 530,
672         "return": {
673           "type": "Boolean",
674           "doc": "<p>True if the event is being listened for, else false</p>\n"
675         },
676         "html_filename": "Observable.html"
677       },
678       {
679         "deprecated": null,
680         "alias": null,
681         "protected": false,
682         "tagname": "method",
683         "href": "Base3.html#Ext-Base-method-implement",
684         "shortDoc": "Add methods / properties to the prototype of this class. ...",
685         "static": true,
686         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
687         "private": false,
688         "params": [
689           {
690             "type": "Object",
691             "optional": false,
692             "doc": "\n",
693             "name": "members"
694           }
695         ],
696         "name": "implement",
697         "owner": "Ext.Base",
698         "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
699         "linenr": 415,
700         "return": {
701           "type": "void",
702           "doc": "\n"
703         },
704         "html_filename": "Base3.html"
705       },
706       {
707         "deprecated": null,
708         "alias": null,
709         "protected": true,
710         "tagname": "method",
711         "href": "Base3.html#Ext-Base-method-initConfig",
712         "shortDoc": "Initialize configuration for this class. ...",
713         "static": false,
714         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
715         "private": false,
716         "params": [
717           {
718             "type": "Object",
719             "optional": false,
720             "doc": "\n",
721             "name": "config"
722           }
723         ],
724         "name": "initConfig",
725         "owner": "Ext.Base",
726         "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
727         "linenr": 63,
728         "return": {
729           "type": "Object",
730           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
731         },
732         "html_filename": "Base3.html"
733       },
734       {
735         "deprecated": null,
736         "alias": null,
737         "protected": false,
738         "tagname": "method",
739         "href": "Sortable.html#Ext-util-Sortable-method-initSortable",
740         "shortDoc": "Performs initialization of this mixin. ...",
741         "static": false,
742         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Sortable.js",
743         "private": false,
744         "params": [
745
746         ],
747         "name": "initSortable",
748         "owner": "Ext.util.Sortable",
749         "doc": "<p>Performs initialization of this mixin. Component classes using this mixin should call this method\nduring their own initialization.</p>\n",
750         "linenr": 36,
751         "return": {
752           "type": "void",
753           "doc": "\n"
754         },
755         "html_filename": "Sortable.html"
756       },
757       {
758         "deprecated": null,
759         "alias": null,
760         "protected": false,
761         "tagname": "method",
762         "href": "AbstractStore.html#Ext-data-AbstractStore-method-isLoading",
763         "shortDoc": "Returns true if the Store is currently performing a load operation ...",
764         "static": false,
765         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
766         "private": false,
767         "params": [
768
769         ],
770         "name": "isLoading",
771         "owner": "Ext.data.AbstractStore",
772         "doc": "<p>Returns true if the Store is currently performing a load operation</p>\n",
773         "linenr": 715,
774         "return": {
775           "type": "Boolean",
776           "doc": "<p>True if the Store is currently loading</p>\n"
777         },
778         "html_filename": "AbstractStore.html"
779       },
780       {
781         "deprecated": null,
782         "alias": null,
783         "protected": false,
784         "tagname": "method",
785         "href": "AbstractStore.html#Ext-data-AbstractStore-method-load",
786         "shortDoc": "Loads the Store using its configured proxy. ...",
787         "static": false,
788         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
789         "private": false,
790         "params": [
791           {
792             "type": "Object",
793             "optional": false,
794             "doc": "<p>Optional config object. This is passed into the <a href=\"#/api/Ext.data.Operation\" rel=\"Ext.data.Operation\" class=\"docClass\">Operation</a>\nobject that is created and then sent to the proxy's <a href=\"#/api/Ext.data.proxy.Proxy-method-read\" rel=\"Ext.data.proxy.Proxy-method-read\" class=\"docClass\">Ext.data.proxy.Proxy.read</a> function</p>\n",
795             "name": "options"
796           }
797         ],
798         "name": "load",
799         "owner": "Ext.data.AbstractStore",
800         "doc": "<p>Loads the Store using its configured <a href=\"#/api/Ext.data.AbstractStore-cfg-proxy\" rel=\"Ext.data.AbstractStore-cfg-proxy\" class=\"docClass\">proxy</a>.</p>\n",
801         "linenr": 607,
802         "return": {
803           "type": "void",
804           "doc": "\n"
805         },
806         "html_filename": "AbstractStore.html"
807       },
808       {
809         "deprecated": null,
810         "alias": {
811           "tagname": "alias",
812           "cls": "Ext.util.Observable",
813           "doc": null,
814           "owner": "addManagedListener"
815         },
816         "protected": false,
817         "tagname": "method",
818         "href": "Observable.html#Ext-util-Observable-method-mon",
819         "shortDoc": "Shorthand for addManagedListener. ...",
820         "static": false,
821         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
822         "private": false,
823         "params": [
824           {
825             "type": "Observable/Element",
826             "optional": false,
827             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
828             "name": "item"
829           },
830           {
831             "type": "Object/String",
832             "optional": false,
833             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
834             "name": "ename"
835           },
836           {
837             "type": "Function",
838             "optional": true,
839             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
840             "name": "fn"
841           },
842           {
843             "type": "Object",
844             "optional": true,
845             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
846             "name": "scope"
847           },
848           {
849             "type": "Object",
850             "optional": true,
851             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the\n<a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
852             "name": "opt"
853           }
854         ],
855         "name": "mon",
856         "owner": "Ext.util.Observable",
857         "doc": "<p>Shorthand for <a href=\"#/api/Ext.data.AbstractStore-method-addManagedListener\" rel=\"Ext.data.AbstractStore-method-addManagedListener\" class=\"docClass\">addManagedListener</a>.</p>\n\n<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
858         "linenr": 681,
859         "return": {
860           "type": "void",
861           "doc": "\n"
862         },
863         "html_filename": "Observable.html"
864       },
865       {
866         "deprecated": null,
867         "alias": {
868           "tagname": "alias",
869           "cls": "Ext.util.Observable",
870           "doc": null,
871           "owner": "removeManagedListener"
872         },
873         "protected": false,
874         "tagname": "method",
875         "href": "Observable.html#Ext-util-Observable-method-mun",
876         "shortDoc": "Shorthand for removeManagedListener. ...",
877         "static": false,
878         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
879         "private": false,
880         "params": [
881           {
882             "type": "Observable|Element",
883             "optional": false,
884             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
885             "name": "item"
886           },
887           {
888             "type": "Object|String",
889             "optional": false,
890             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
891             "name": "ename"
892           },
893           {
894             "type": "Function",
895             "optional": false,
896             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
897             "name": "fn"
898           },
899           {
900             "type": "Object",
901             "optional": false,
902             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
903             "name": "scope"
904           }
905         ],
906         "name": "mun",
907         "owner": "Ext.util.Observable",
908         "doc": "<p>Shorthand for <a href=\"#/api/Ext.data.AbstractStore-method-removeManagedListener\" rel=\"Ext.data.AbstractStore-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.data.AbstractStore-method-mon\" rel=\"Ext.data.AbstractStore-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
909         "linenr": 687,
910         "return": {
911           "type": "void",
912           "doc": "\n"
913         },
914         "html_filename": "Observable.html"
915       },
916       {
917         "deprecated": null,
918         "alias": null,
919         "protected": false,
920         "tagname": "method",
921         "href": "Observable.html#Ext-util-Observable-method-observe",
922         "shortDoc": "Sets observability on the passed class constructor. ...",
923         "static": true,
924         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
925         "private": false,
926         "params": [
927           {
928             "type": "Function",
929             "optional": false,
930             "doc": "<p>The class constructor to make observable.</p>\n",
931             "name": "c"
932           },
933           {
934             "type": "Object",
935             "optional": false,
936             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.data.AbstractStore-method-addListener\" rel=\"Ext.data.AbstractStore-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
937             "name": "listeners"
938           }
939         ],
940         "name": "observe",
941         "owner": "Ext.util.Observable",
942         "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",
943         "linenr": 69,
944         "return": {
945           "type": "void",
946           "doc": "\n"
947         },
948         "html_filename": "Observable.html"
949       },
950       {
951         "deprecated": null,
952         "alias": {
953           "tagname": "alias",
954           "cls": "Ext.util.Observable",
955           "doc": null,
956           "owner": "addListener"
957         },
958         "protected": false,
959         "tagname": "method",
960         "href": "Observable.html#Ext-util-Observable-method-on",
961         "shortDoc": "Shorthand for addListener. ...",
962         "static": false,
963         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
964         "private": false,
965         "params": [
966           {
967             "type": "String",
968             "optional": false,
969             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
970             "name": "eventName"
971           },
972           {
973             "type": "Function",
974             "optional": false,
975             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.data.AbstractStore-method-fireEvent\" rel=\"Ext.data.AbstractStore-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
976             "name": "handler"
977           },
978           {
979             "type": "Object",
980             "optional": true,
981             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the handler function is executed. <strong>If\nomitted, defaults to the object which fired the event.</strong></p>\n",
982             "name": "scope"
983           },
984           {
985             "type": "Object",
986             "optional": true,
987             "doc": "<p>(optional) An object containing handler configuration.</p>\n\n<p><strong>Note:</strong> Unlike in ExtJS 3.x, the options object will also be passed as the last argument to every event handler.</p>\n\n<p>This object may contain any of the following properties:</p>\n\n<ul>\n<li><p><strong>scope</strong> : Object</p>\n\n<p>The scope (<code>this</code> reference) in which the handler function is executed. <strong>If omitted, defaults to the object\nwhich fired the event.</strong></p></li>\n<li><p><strong>delay</strong> : Number</p>\n\n<p>The number of milliseconds to delay the invocation of the handler after the event fires.</p></li>\n<li><p><strong>single</strong> : Boolean</p>\n\n<p>True to add a handler to handle just the next firing of the event, and then remove itself.</p></li>\n<li><p><strong>buffer</strong> : Number</p>\n\n<p>Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed by the specified number of\nmilliseconds. If the event fires again within that time, the original handler is <em>not</em> invoked, but the new\nhandler is scheduled in its place.</p></li>\n<li><p><strong>target</strong> : Observable</p>\n\n<p>Only call the handler if the event was fired on the target Observable, <em>not</em> if the event was bubbled up from a\nchild Observable.</p></li>\n<li><p><strong>element</strong> : String</p>\n\n<p><strong>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</strong> The name of a Component\nproperty which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of\n<a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which will exist only after the Component is rendered.\nFor example, to add a click listener to a Panel's body:</p>\n\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></li>\n</ul>\n\n\n<p><strong>Combining Options</strong></p>\n\n<p>Using the options argument, it is possible to combine different types of listeners:</p>\n\n<p>A delayed, one-time listener.</p>\n\n<pre><code>myPanel.on('hide', this.handleClick, this, {\n    single: true,\n    delay: 100\n});\n</code></pre>\n\n<p><strong>Attaching multiple handlers in 1 call</strong></p>\n\n<p>The method also allows for a single argument to be passed which is a config object containing properties which\nspecify multiple events. For example:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>\n\n<p>One can also specify options for each event handler separately:</p>\n\n<pre><code>myGridPanel.on({\n    cellClick: {fn: this.onCellClick, scope: this, single: true},\n    mouseover: {fn: panel.onMouseOver, scope: panel}\n});\n</code></pre>\n",
988             "name": "options"
989           }
990         ],
991         "name": "on",
992         "owner": "Ext.util.Observable",
993         "doc": "<p>Shorthand for <a href=\"#/api/Ext.data.AbstractStore-method-addListener\" rel=\"Ext.data.AbstractStore-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
994         "linenr": 669,
995         "return": {
996           "type": "void",
997           "doc": "\n"
998         },
999         "html_filename": "Observable.html"
1000       },
1001       {
1002         "deprecated": null,
1003         "alias": null,
1004         "protected": false,
1005         "tagname": "method",
1006         "href": "Base3.html#Ext-Base-method-override",
1007         "shortDoc": "Override prototype members of this class. ...",
1008         "static": true,
1009         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1010         "private": false,
1011         "params": [
1012           {
1013             "type": "Object",
1014             "optional": false,
1015             "doc": "\n",
1016             "name": "members"
1017           }
1018         ],
1019         "name": "override",
1020         "owner": "Ext.Base",
1021         "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
1022         "linenr": 518,
1023         "return": {
1024           "type": "Ext.Base",
1025           "doc": "<p>this</p>\n"
1026         },
1027         "html_filename": "Base3.html"
1028       },
1029       {
1030         "deprecated": null,
1031         "alias": null,
1032         "protected": false,
1033         "tagname": "method",
1034         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1035         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
1036         "static": false,
1037         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1038         "private": false,
1039         "params": [
1040           {
1041             "type": "Object",
1042             "optional": false,
1043             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1044             "name": "origin"
1045           },
1046           {
1047             "type": "[String]",
1048             "optional": false,
1049             "doc": "<p>Array of event names to relay.</p>\n",
1050             "name": "events"
1051           },
1052           {
1053             "type": "Object",
1054             "optional": false,
1055             "doc": "\n",
1056             "name": "prefix"
1057           }
1058         ],
1059         "name": "relayEvents",
1060         "owner": "Ext.util.Observable",
1061         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
1062         "linenr": 573,
1063         "return": {
1064           "type": "void",
1065           "doc": "\n"
1066         },
1067         "html_filename": "Observable.html"
1068       },
1069       {
1070         "deprecated": null,
1071         "alias": null,
1072         "protected": false,
1073         "tagname": "method",
1074         "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1075         "shortDoc": "Removes all added captures from the Observable. ...",
1076         "static": true,
1077         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1078         "private": false,
1079         "params": [
1080           {
1081             "type": "Observable",
1082             "optional": false,
1083             "doc": "<p>The Observable to release</p>\n",
1084             "name": "o"
1085           }
1086         ],
1087         "name": "releaseCapture",
1088         "owner": "Ext.util.Observable",
1089         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
1090         "linenr": 44,
1091         "return": {
1092           "type": "void",
1093           "doc": "\n"
1094         },
1095         "html_filename": "Observable.html"
1096       },
1097       {
1098         "deprecated": null,
1099         "alias": null,
1100         "protected": false,
1101         "tagname": "method",
1102         "href": "AbstractStore.html#Ext-data-AbstractStore-method-removeAll",
1103         "shortDoc": "Removes all records from the store. ...",
1104         "static": false,
1105         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1106         "private": false,
1107         "params": [
1108
1109         ],
1110         "name": "removeAll",
1111         "owner": "Ext.data.AbstractStore",
1112         "doc": "<p>Removes all records from the store. This method does a \"fast remove\",\nindividual remove events are not called. The <a href=\"#/api/Ext.data.AbstractStore-event-clear\" rel=\"Ext.data.AbstractStore-event-clear\" class=\"docClass\">clear</a> event is\nfired upon completion.</p>\n",
1113         "linenr": 705,
1114         "return": {
1115           "type": "void",
1116           "doc": "\n"
1117         },
1118         "html_filename": "AbstractStore.html"
1119       },
1120       {
1121         "deprecated": null,
1122         "alias": null,
1123         "protected": false,
1124         "tagname": "method",
1125         "href": "Observable.html#Ext-util-Observable-method-removeListener",
1126         "shortDoc": "Removes an event handler. ...",
1127         "static": false,
1128         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1129         "private": false,
1130         "params": [
1131           {
1132             "type": "String",
1133             "optional": false,
1134             "doc": "<p>The type of event the handler was associated with.</p>\n",
1135             "name": "eventName"
1136           },
1137           {
1138             "type": "Function",
1139             "optional": false,
1140             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.data.AbstractStore-method-addListener\" rel=\"Ext.data.AbstractStore-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1141             "name": "handler"
1142           },
1143           {
1144             "type": "Object",
1145             "optional": true,
1146             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1147             "name": "scope"
1148           }
1149         ],
1150         "name": "removeListener",
1151         "owner": "Ext.util.Observable",
1152         "doc": "<p>Removes an event handler.</p>\n",
1153         "linenr": 392,
1154         "return": {
1155           "type": "void",
1156           "doc": "\n"
1157         },
1158         "html_filename": "Observable.html"
1159       },
1160       {
1161         "deprecated": null,
1162         "alias": null,
1163         "protected": false,
1164         "tagname": "method",
1165         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1166         "shortDoc": "Removes listeners that were added by the mon method. ...",
1167         "static": false,
1168         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1169         "private": false,
1170         "params": [
1171           {
1172             "type": "Observable|Element",
1173             "optional": false,
1174             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1175             "name": "item"
1176           },
1177           {
1178             "type": "Object|String",
1179             "optional": false,
1180             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1181             "name": "ename"
1182           },
1183           {
1184             "type": "Function",
1185             "optional": false,
1186             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1187             "name": "fn"
1188           },
1189           {
1190             "type": "Object",
1191             "optional": false,
1192             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
1193             "name": "scope"
1194           }
1195         ],
1196         "name": "removeManagedListener",
1197         "owner": "Ext.util.Observable",
1198         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.data.AbstractStore-method-mon\" rel=\"Ext.data.AbstractStore-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1199         "linenr": 197,
1200         "return": {
1201           "type": "void",
1202           "doc": "\n"
1203         },
1204         "html_filename": "Observable.html"
1205       },
1206       {
1207         "deprecated": null,
1208         "alias": null,
1209         "protected": false,
1210         "tagname": "method",
1211         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1212         "shortDoc": "Resumes firing events (see suspendEvents). ...",
1213         "static": false,
1214         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1215         "private": false,
1216         "params": [
1217
1218         ],
1219         "name": "resumeEvents",
1220         "owner": "Ext.util.Observable",
1221         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.data.AbstractStore-method-suspendEvents\" rel=\"Ext.data.AbstractStore-method-suspendEvents\" class=\"docClass\">suspendEvents</a>).</p>\n\n<p>If events were suspended using the <code>**queueSuspended**</code> parameter, then all events fired\nduring event suspension will be sent to any listeners now.</p>\n",
1222         "linenr": 554,
1223         "return": {
1224           "type": "void",
1225           "doc": "\n"
1226         },
1227         "html_filename": "Observable.html"
1228       },
1229       {
1230         "deprecated": null,
1231         "alias": null,
1232         "protected": false,
1233         "tagname": "method",
1234         "href": "AbstractStore.html#Ext-data-AbstractStore-method-setProxy",
1235         "shortDoc": "Sets the Store's Proxy by string, config object or Proxy instance ...",
1236         "static": false,
1237         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1238         "private": false,
1239         "params": [
1240           {
1241             "type": "String|Object|Ext.data.proxy.Proxy",
1242             "optional": false,
1243             "doc": "<p>The new Proxy, which can be either a type string, a configuration object\nor an <a href=\"#/api/Ext.data.proxy.Proxy\" rel=\"Ext.data.proxy.Proxy\" class=\"docClass\">Ext.data.proxy.Proxy</a> instance</p>\n",
1244             "name": "proxy"
1245           }
1246         ],
1247         "name": "setProxy",
1248         "owner": "Ext.data.AbstractStore",
1249         "doc": "<p>Sets the Store's Proxy by string, config object or Proxy instance</p>\n",
1250         "linenr": 276,
1251         "return": {
1252           "type": "Ext.data.proxy.Proxy",
1253           "doc": "<p>The attached Proxy object</p>\n"
1254         },
1255         "html_filename": "AbstractStore.html"
1256       },
1257       {
1258         "deprecated": null,
1259         "alias": null,
1260         "protected": false,
1261         "tagname": "method",
1262         "href": "Sortable.html#Ext-util-Sortable-method-sort",
1263         "shortDoc": "Sorts the data in the Store by one or more of its properties. ...",
1264         "static": false,
1265         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Sortable.js",
1266         "private": false,
1267         "params": [
1268           {
1269             "type": "String|Array",
1270             "optional": false,
1271             "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",
1272             "name": "sorters"
1273           },
1274           {
1275             "type": "String",
1276             "optional": false,
1277             "doc": "<p>The overall direction to sort the data by. Defaults to \"ASC\".</p>\n",
1278             "name": "direction"
1279           },
1280           {
1281             "type": "Object",
1282             "optional": false,
1283             "doc": "\n",
1284             "name": "where"
1285           },
1286           {
1287             "type": "Object",
1288             "optional": false,
1289             "doc": "\n",
1290             "name": "doSort"
1291           }
1292         ],
1293         "name": "sort",
1294         "owner": "Ext.util.Sortable",
1295         "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",
1296         "linenr": 58,
1297         "return": {
1298           "type": "void",
1299           "doc": "\n"
1300         },
1301         "html_filename": "Sortable.html"
1302       },
1303       {
1304         "deprecated": null,
1305         "alias": null,
1306         "protected": true,
1307         "tagname": "method",
1308         "href": "Base3.html#Ext-Base-method-statics",
1309         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1310         "static": false,
1311         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1312         "private": false,
1313         "params": [
1314
1315         ],
1316         "name": "statics",
1317         "owner": "Ext.Base",
1318         "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
1319         "linenr": 199,
1320         "return": {
1321           "type": "Class",
1322           "doc": "\n"
1323         },
1324         "html_filename": "Base3.html"
1325       },
1326       {
1327         "deprecated": null,
1328         "alias": null,
1329         "protected": false,
1330         "tagname": "method",
1331         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1332         "shortDoc": "Suspends the firing of all events. ...",
1333         "static": false,
1334         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1335         "private": false,
1336         "params": [
1337           {
1338             "type": "Boolean",
1339             "optional": false,
1340             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.data.AbstractStore-method-resumeEvents\" rel=\"Ext.data.AbstractStore-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1341             "name": "queueSuspended"
1342           }
1343         ],
1344         "name": "suspendEvents",
1345         "owner": "Ext.util.Observable",
1346         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.data.AbstractStore-method-resumeEvents\" rel=\"Ext.data.AbstractStore-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1347         "linenr": 541,
1348         "return": {
1349           "type": "void",
1350           "doc": "\n"
1351         },
1352         "html_filename": "Observable.html"
1353       },
1354       {
1355         "deprecated": null,
1356         "alias": null,
1357         "protected": false,
1358         "tagname": "method",
1359         "href": "AbstractStore.html#Ext-data-AbstractStore-method-sync",
1360         "shortDoc": "Synchronizes the Store with its Proxy. ...",
1361         "static": false,
1362         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1363         "private": false,
1364         "params": [
1365
1366         ],
1367         "name": "sync",
1368         "owner": "Ext.data.AbstractStore",
1369         "doc": "<p>Synchronizes the Store with its Proxy. This asks the Proxy to batch together any new, updated\nand deleted records in the store, updating the Store's internal representation of the records\nas each operation completes.</p>\n",
1370         "linenr": 546,
1371         "return": {
1372           "type": "void",
1373           "doc": "\n"
1374         },
1375         "html_filename": "AbstractStore.html"
1376       },
1377       {
1378         "deprecated": null,
1379         "alias": {
1380           "tagname": "alias",
1381           "cls": "Ext.util.Observable",
1382           "doc": null,
1383           "owner": "removeListener"
1384         },
1385         "protected": false,
1386         "tagname": "method",
1387         "href": "Observable.html#Ext-util-Observable-method-un",
1388         "shortDoc": "Shorthand for removeListener. ...",
1389         "static": false,
1390         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1391         "private": false,
1392         "params": [
1393           {
1394             "type": "String",
1395             "optional": false,
1396             "doc": "<p>The type of event the handler was associated with.</p>\n",
1397             "name": "eventName"
1398           },
1399           {
1400             "type": "Function",
1401             "optional": false,
1402             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.data.AbstractStore-method-addListener\" rel=\"Ext.data.AbstractStore-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1403             "name": "handler"
1404           },
1405           {
1406             "type": "Object",
1407             "optional": true,
1408             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1409             "name": "scope"
1410           }
1411         ],
1412         "name": "un",
1413         "owner": "Ext.util.Observable",
1414         "doc": "<p>Shorthand for <a href=\"#/api/Ext.data.AbstractStore-method-removeListener\" rel=\"Ext.data.AbstractStore-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1415         "linenr": 675,
1416         "return": {
1417           "type": "void",
1418           "doc": "\n"
1419         },
1420         "html_filename": "Observable.html"
1421       }
1422     ],
1423     "property": [
1424       {
1425         "type": "String",
1426         "deprecated": null,
1427         "alias": null,
1428         "protected": false,
1429         "tagname": "property",
1430         "href": "Sortable.html#Ext-util-Sortable-property-",
1431         "static": false,
1432         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Sortable.js",
1433         "private": false,
1434         "name": "",
1435         "owner": "Ext.util.Sortable",
1436         "doc": "<p>The property in each item that contains the data to sort.</p>\n",
1437         "linenr": 31,
1438         "html_filename": "Sortable.html"
1439       },
1440       {
1441         "type": "String",
1442         "deprecated": null,
1443         "alias": null,
1444         "protected": false,
1445         "tagname": "property",
1446         "href": "AbstractStore.html#Ext-data-AbstractStore-property-batchUpdateMode",
1447         "shortDoc": "Sets the updating behavior based on batch synchronization. ...",
1448         "static": false,
1449         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1450         "private": false,
1451         "name": "batchUpdateMode",
1452         "owner": "Ext.data.AbstractStore",
1453         "doc": "<p>Sets the updating behavior based on batch synchronization. 'operation' (the default) will update the Store's\ninternal representation of the data after each operation of the batch has completed, 'complete' will wait until\nthe entire batch has been completed before updating the Store's data. 'complete' is a good choice for local\nstorage proxies, 'operation' is better for remote proxies, where there is a comparatively high latency.</p>\n",
1454         "linenr": 67,
1455         "html_filename": "AbstractStore.html"
1456       },
1457       {
1458         "type": "String",
1459         "deprecated": null,
1460         "alias": null,
1461         "protected": false,
1462         "tagname": "property",
1463         "href": "AbstractStore.html#Ext-data-AbstractStore-property-defaultProxyType",
1464         "shortDoc": "The string type of the Proxy to create if none is specified. ...",
1465         "static": false,
1466         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1467         "private": false,
1468         "name": "defaultProxyType",
1469         "owner": "Ext.data.AbstractStore",
1470         "doc": "<p>The string type of the Proxy to create if none is specified. This defaults to creating a <a href=\"#/api/Ext.data.proxy.Memory\" rel=\"Ext.data.proxy.Memory\" class=\"docClass\">memory proxy</a>.</p>\n",
1471         "linenr": 102,
1472         "html_filename": "AbstractStore.html"
1473       },
1474       {
1475         "type": "String",
1476         "deprecated": null,
1477         "alias": null,
1478         "protected": false,
1479         "tagname": "property",
1480         "href": "Sortable.html#Ext-util-Sortable-property-defaultSortDirection",
1481         "static": false,
1482         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Sortable.js",
1483         "private": false,
1484         "name": "defaultSortDirection",
1485         "owner": "Ext.util.Sortable",
1486         "doc": "<p>The default sort direction to use if one is not specified (defaults to \"ASC\")</p>\n",
1487         "linenr": 20,
1488         "html_filename": "Sortable.html"
1489       },
1490       {
1491         "type": "Boolean",
1492         "deprecated": null,
1493         "alias": null,
1494         "protected": false,
1495         "tagname": "property",
1496         "href": "AbstractStore.html#Ext-data-AbstractStore-property-filterOnLoad",
1497         "shortDoc": "If true, any filters attached to this Store will be run after loading data, before the datachanged event is fired. ...",
1498         "static": false,
1499         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1500         "private": false,
1501         "name": "filterOnLoad",
1502         "owner": "Ext.data.AbstractStore",
1503         "doc": "<p>If true, any filters attached to this Store will be run after loading data, before the datachanged event is fired.\nDefaults to true, ignored if remoteFilter is true</p>\n",
1504         "linenr": 77,
1505         "html_filename": "AbstractStore.html"
1506       },
1507       {
1508         "type": "Ext.util.MixedCollection",
1509         "deprecated": null,
1510         "alias": null,
1511         "protected": false,
1512         "tagname": "property",
1513         "href": "AbstractStore.html#Ext-data-AbstractStore-property-filters",
1514         "static": false,
1515         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1516         "private": false,
1517         "name": "filters",
1518         "owner": "Ext.data.AbstractStore",
1519         "doc": "<p>The collection of <a href=\"#/api/Ext.util.Filter\" rel=\"Ext.util.Filter\" class=\"docClass\">Filters</a> currently applied to this Store</p>\n",
1520         "linenr": 266,
1521         "html_filename": "AbstractStore.html"
1522       },
1523       {
1524         "type": "Boolean",
1525         "deprecated": null,
1526         "alias": null,
1527         "protected": false,
1528         "tagname": "property",
1529         "href": "AbstractStore.html#Ext-data-AbstractStore-property-isDestroyed",
1530         "shortDoc": "True if the Store has already been destroyed via destroyStore. ...",
1531         "static": false,
1532         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1533         "private": false,
1534         "name": "isDestroyed",
1535         "owner": "Ext.data.AbstractStore",
1536         "doc": "<p>True if the Store has already been destroyed via destroyStore. If this is true, the reference to Store should be deleted\nas it will not function correctly any more.</p>\n",
1537         "linenr": 109,
1538         "html_filename": "AbstractStore.html"
1539       },
1540       {
1541         "type": "Boolean",
1542         "deprecated": null,
1543         "alias": null,
1544         "protected": false,
1545         "tagname": "property",
1546         "href": "Sortable.html#Ext-util-Sortable-property-isSortable",
1547         "shortDoc": "Flag denoting that this object is sortable. ...",
1548         "static": false,
1549         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Sortable.js",
1550         "private": false,
1551         "name": "isSortable",
1552         "owner": "Ext.util.Sortable",
1553         "doc": "<p>Flag denoting that this object is sortable. Always true.</p>\n",
1554         "linenr": 13,
1555         "html_filename": "Sortable.html"
1556       },
1557       {
1558         "type": "Class",
1559         "deprecated": null,
1560         "alias": null,
1561         "protected": true,
1562         "tagname": "property",
1563         "href": "Base3.html#Ext-Base-property-self",
1564         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1565         "static": false,
1566         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1567         "private": false,
1568         "name": "self",
1569         "owner": "Ext.Base",
1570         "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
1571         "linenr": 18,
1572         "html_filename": "Base3.html"
1573       },
1574       {
1575         "type": "Boolean",
1576         "deprecated": null,
1577         "alias": null,
1578         "protected": false,
1579         "tagname": "property",
1580         "href": "AbstractStore.html#Ext-data-AbstractStore-property-sortOnLoad",
1581         "shortDoc": "If true, any sorters attached to this Store will be run after loading data, before the datachanged event is fired. ...",
1582         "static": false,
1583         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1584         "private": false,
1585         "name": "sortOnLoad",
1586         "owner": "Ext.data.AbstractStore",
1587         "doc": "<p>If true, any sorters attached to this Store will be run after loading data, before the datachanged event is fired.\nDefaults to true, igored if remoteSort is true</p>\n",
1588         "linenr": 85,
1589         "html_filename": "AbstractStore.html"
1590       },
1591       {
1592         "type": "Ext.util.MixedCollection",
1593         "deprecated": null,
1594         "alias": null,
1595         "protected": false,
1596         "tagname": "property",
1597         "href": "Sortable.html#Ext-util-Sortable-property-sorters",
1598         "static": false,
1599         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Sortable.js",
1600         "private": false,
1601         "name": "sorters",
1602         "owner": "Ext.util.Sortable",
1603         "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",
1604         "linenr": 44,
1605         "html_filename": "Sortable.html"
1606       }
1607     ],
1608     "cssVar": [
1609
1610     ],
1611     "cssMixin": [
1612
1613     ],
1614     "event": [
1615       {
1616         "deprecated": null,
1617         "alias": null,
1618         "protected": false,
1619         "tagname": "event",
1620         "href": "AbstractStore.html#Ext-data-AbstractStore-event-add",
1621         "shortDoc": "Fired when a Model instance has been added to this Store ...",
1622         "static": false,
1623         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1624         "private": false,
1625         "params": [
1626           {
1627             "type": "Ext.data.Store",
1628             "optional": false,
1629             "doc": "<p>The store</p>\n",
1630             "name": "store"
1631           },
1632           {
1633             "type": "Array",
1634             "optional": false,
1635             "doc": "<p>The Model instances that were added</p>\n",
1636             "name": "records"
1637           },
1638           {
1639             "type": "Number",
1640             "optional": false,
1641             "doc": "<p>The index at which the instances were inserted</p>\n",
1642             "name": "index"
1643           },
1644           {
1645             "type": "Object",
1646             "tagname": "param",
1647             "name": "options",
1648             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1649           }
1650         ],
1651         "name": "add",
1652         "owner": "Ext.data.AbstractStore",
1653         "doc": "<p>Fired when a Model instance has been added to this Store</p>\n",
1654         "linenr": 141,
1655         "html_filename": "AbstractStore.html"
1656       },
1657       {
1658         "deprecated": null,
1659         "alias": null,
1660         "protected": false,
1661         "tagname": "event",
1662         "href": "AbstractStore.html#Ext-data-AbstractStore-event-beforeload",
1663         "shortDoc": "Event description ...",
1664         "static": false,
1665         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1666         "private": false,
1667         "params": [
1668           {
1669             "type": "Ext.data.Store",
1670             "optional": false,
1671             "doc": "<p>This Store</p>\n",
1672             "name": "store"
1673           },
1674           {
1675             "type": "Ext.data.Operation",
1676             "optional": false,
1677             "doc": "<p>The <a href=\"#/api/Ext.data.Operation\" rel=\"Ext.data.Operation\" class=\"docClass\">Ext.data.Operation</a> object that will be passed to the Proxy to load the Store</p>\n",
1678             "name": "operation"
1679           },
1680           {
1681             "type": "Object",
1682             "tagname": "param",
1683             "name": "options",
1684             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1685           }
1686         ],
1687         "name": "beforeload",
1688         "owner": "Ext.data.AbstractStore",
1689         "doc": "<p>Event description</p>\n",
1690         "linenr": 181,
1691         "html_filename": "AbstractStore.html"
1692       },
1693       {
1694         "deprecated": null,
1695         "alias": null,
1696         "protected": false,
1697         "tagname": "event",
1698         "href": "AbstractStore.html#Ext-data-AbstractStore-event-beforesync",
1699         "shortDoc": "Called before a call to sync is executed. ...",
1700         "static": false,
1701         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1702         "private": false,
1703         "params": [
1704           {
1705             "type": "Object",
1706             "optional": false,
1707             "doc": "<p>Hash of all records to be synchronized, broken down into create, update and destroy</p>\n",
1708             "name": "options"
1709           },
1710           {
1711             "type": "Object",
1712             "tagname": "param",
1713             "name": "options",
1714             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1715           }
1716         ],
1717         "name": "beforesync",
1718         "owner": "Ext.data.AbstractStore",
1719         "doc": "<p>Called before a call to <a href=\"#/api/Ext.data.AbstractStore-method-sync\" rel=\"Ext.data.AbstractStore-method-sync\" class=\"docClass\">sync</a> is executed. Return false from any listener to cancel the synv</p>\n",
1720         "linenr": 198,
1721         "html_filename": "AbstractStore.html"
1722       },
1723       {
1724         "deprecated": null,
1725         "alias": null,
1726         "protected": false,
1727         "tagname": "event",
1728         "href": "AbstractStore.html#Ext-data-AbstractStore-event-clear",
1729         "shortDoc": "Fired after the removeAll method is called. ...",
1730         "static": false,
1731         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1732         "private": false,
1733         "params": [
1734           {
1735             "type": "Ext.data.Store",
1736             "optional": false,
1737             "doc": "\n",
1738             "name": "this"
1739           },
1740           {
1741             "type": "Object",
1742             "tagname": "param",
1743             "name": "options",
1744             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1745           }
1746         ],
1747         "name": "clear",
1748         "owner": "Ext.data.AbstractStore",
1749         "doc": "<p>Fired after the <a href=\"#/api/Ext.data.AbstractStore-method-removeAll\" rel=\"Ext.data.AbstractStore-method-removeAll\" class=\"docClass\">removeAll</a> method is called.</p>\n",
1750         "linenr": 204,
1751         "html_filename": "AbstractStore.html"
1752       },
1753       {
1754         "deprecated": null,
1755         "alias": null,
1756         "protected": false,
1757         "tagname": "event",
1758         "href": "AbstractStore.html#Ext-data-AbstractStore-event-datachanged",
1759         "shortDoc": "Fires whenever the records in the Store have changed in some way - this could include adding or removing records,\nor ...",
1760         "static": false,
1761         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1762         "private": false,
1763         "params": [
1764           {
1765             "type": "Ext.data.Store",
1766             "optional": false,
1767             "doc": "<p>The data store</p>\n",
1768             "name": "this"
1769           },
1770           {
1771             "type": "Object",
1772             "tagname": "param",
1773             "name": "options",
1774             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1775           }
1776         ],
1777         "name": "datachanged",
1778         "owner": "Ext.data.AbstractStore",
1779         "doc": "<p>Fires whenever the records in the Store have changed in some way - this could include adding or removing records,\nor updating the data in existing records</p>\n",
1780         "linenr": 173,
1781         "html_filename": "AbstractStore.html"
1782       },
1783       {
1784         "deprecated": null,
1785         "alias": null,
1786         "protected": false,
1787         "tagname": "event",
1788         "href": "AbstractStore.html#Ext-data-AbstractStore-event-load",
1789         "shortDoc": "Fires whenever the store reads data from a remote data source. ...",
1790         "static": false,
1791         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1792         "private": false,
1793         "params": [
1794           {
1795             "type": "Ext.data.Store",
1796             "optional": false,
1797             "doc": "\n",
1798             "name": "this"
1799           },
1800           {
1801             "type": "Array",
1802             "optional": false,
1803             "doc": "<p>An array of records</p>\n",
1804             "name": "records"
1805           },
1806           {
1807             "type": "Boolean",
1808             "optional": false,
1809             "doc": "<p>True if the operation was successful.</p>\n",
1810             "name": "successful"
1811           },
1812           {
1813             "type": "Object",
1814             "tagname": "param",
1815             "name": "options",
1816             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1817           }
1818         ],
1819         "name": "load",
1820         "owner": "Ext.data.AbstractStore",
1821         "doc": "<p>Fires whenever the store reads data from a remote data source.</p>\n",
1822         "linenr": 189,
1823         "html_filename": "AbstractStore.html"
1824       },
1825       {
1826         "deprecated": null,
1827         "alias": null,
1828         "protected": false,
1829         "tagname": "event",
1830         "href": "AbstractStore.html#Ext-data-AbstractStore-event-remove",
1831         "shortDoc": "Fired when a Model instance has been removed from this Store ...",
1832         "static": false,
1833         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1834         "private": false,
1835         "params": [
1836           {
1837             "type": "Ext.data.Store",
1838             "optional": false,
1839             "doc": "<p>The Store object</p>\n",
1840             "name": "store"
1841           },
1842           {
1843             "type": "Ext.data.Model",
1844             "optional": false,
1845             "doc": "<p>The record that was removed</p>\n",
1846             "name": "record"
1847           },
1848           {
1849             "type": "Number",
1850             "optional": false,
1851             "doc": "<p>The index of the record that was removed</p>\n",
1852             "name": "index"
1853           },
1854           {
1855             "type": "Object",
1856             "tagname": "param",
1857             "name": "options",
1858             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1859           }
1860         ],
1861         "name": "remove",
1862         "owner": "Ext.data.AbstractStore",
1863         "doc": "<p>Fired when a Model instance has been removed from this Store</p>\n",
1864         "linenr": 150,
1865         "html_filename": "AbstractStore.html"
1866       },
1867       {
1868         "deprecated": null,
1869         "alias": null,
1870         "protected": false,
1871         "tagname": "event",
1872         "href": "AbstractStore.html#Ext-data-AbstractStore-event-update",
1873         "shortDoc": "Fires when a Record has been updated ...",
1874         "static": false,
1875         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1876         "private": false,
1877         "params": [
1878           {
1879             "type": "Store",
1880             "optional": false,
1881             "doc": "\n",
1882             "name": "this"
1883           },
1884           {
1885             "type": "Ext.data.Model",
1886             "optional": false,
1887             "doc": "<p>The Model instance that was updated</p>\n",
1888             "name": "record"
1889           },
1890           {
1891             "type": "String",
1892             "optional": false,
1893             "doc": "<p>The update operation being performed. Value may be one of:</p>\n\n<pre><code>               Ext.data.Model.EDIT\n               Ext.data.Model.REJECT\n               Ext.data.Model.COMMIT\n</code></pre>\n\n",
1894             "name": "operation"
1895           },
1896           {
1897             "type": "Object",
1898             "tagname": "param",
1899             "name": "options",
1900             "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1901           }
1902         ],
1903         "name": "update",
1904         "owner": "Ext.data.AbstractStore",
1905         "doc": "<p>Fires when a Record has been updated</p>\n",
1906         "linenr": 159,
1907         "html_filename": "AbstractStore.html"
1908       }
1909     ]
1910   },
1911   "singleton": false,
1912   "alias": null,
1913   "superclasses": [
1914     "Ext.Base"
1915   ],
1916   "protected": false,
1917   "tagname": "class",
1918   "mixins": [
1919     "Ext.util.Observable",
1920     "Ext.util.Sortable"
1921   ],
1922   "href": "AbstractStore.html#Ext-data-AbstractStore",
1923   "subclasses": [
1924     "Ext.data.Store",
1925     "Ext.data.TreeStore"
1926   ],
1927   "static": false,
1928   "author": "Ed Spencer",
1929   "component": false,
1930   "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/AbstractStore.js",
1931   "private": false,
1932   "alternateClassNames": [
1933
1934   ],
1935   "name": "Ext.data.AbstractStore",
1936   "doc": "<p>AbstractStore is a superclass of <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a> and <a href=\"#/api/Ext.data.TreeStore\" rel=\"Ext.data.TreeStore\" class=\"docClass\">Ext.data.TreeStore</a>. It's never used directly,\nbut offers a set of methods used by both of those subclasses.</p>\n\n\n\n\n<p>We've left it here in the docs for reference purposes, but unless you need to make a whole new type of Store, what\nyou're probably looking for is <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a>. If you're still interested, here's a brief description of what \nAbstractStore is and is not.</p>\n\n\n\n\n<p>AbstractStore provides the basic configuration for anything that can be considered a Store. It expects to be \ngiven a <a href=\"#/api/Ext.data.Model\" rel=\"Ext.data.Model\" class=\"docClass\">Model</a> that represents the type of data in the Store. It also expects to be given a \n<a href=\"#/api/Ext.data.proxy.Proxy\" rel=\"Ext.data.proxy.Proxy\" class=\"docClass\">Proxy</a> that handles the loading of data into the Store.</p>\n\n\n\n\n<p>AbstractStore provides a few helpful methods such as <a href=\"#/api/Ext.data.AbstractStore-event-load\" rel=\"Ext.data.AbstractStore-event-load\" class=\"docClass\">load</a> and <a href=\"#/api/Ext.data.AbstractStore-method-sync\" rel=\"Ext.data.AbstractStore-method-sync\" class=\"docClass\">sync</a>, which load and save data\nrespectively, passing the requests through the configured <a href=\"#/api/Ext.data.AbstractStore-cfg-proxy\" rel=\"Ext.data.AbstractStore-cfg-proxy\" class=\"docClass\">proxy</a>. Both built-in Store subclasses add extra\nbehavior to each of these functions. Note also that each AbstractStore subclass has its own way of storing data - \nin <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a> the data is saved as a flat <a href=\"#/api/Ext.util.MixedCollection\" rel=\"Ext.util.MixedCollection\" class=\"docClass\">MixedCollection</a>, whereas in\n<a href=\"#/api/Ext.data.TreeStore\" rel=\"Ext.data.TreeStore\" class=\"docClass\">TreeStore</a> we use a <a href=\"#/api/Ext.data.Tree\" rel=\"Ext.data.Tree\" class=\"docClass\">Ext.data.Tree</a> to maintain the data's hierarchy.</p>\n\n\n<p>The store provides filtering and sorting support. This sorting/filtering can happen on the client side\nor can be completed on the server. This is controlled by the remoteSort and (@link #remoteFilter{ config\noptions. For more information see the <a href=\"#/api/Ext.data.AbstractStore-method-sort\" rel=\"Ext.data.AbstractStore-method-sort\" class=\"docClass\">sort</a> and filter methods.</p>\n",
1937   "mixedInto": [
1938
1939   ],
1940   "linenr": 1,
1941   "xtypes": [
1942
1943   ],
1944   "html_filename": "AbstractStore.html",
1945   "extends": "Ext.Base"
1946 });