Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.selection.Model.js
1 Ext.data.JsonP.Ext_selection_Model({
2   "allMixins": [
3
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9       {
10         "type": "Boolean",
11         "deprecated": null,
12         "alias": null,
13         "protected": false,
14         "tagname": "cfg",
15         "href": "Model2.html#Ext-selection-Model-cfg-allowDeselect",
16         "shortDoc": "Allow users to deselect a record in a DataView, List or Grid. ...",
17         "static": false,
18         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
19         "private": false,
20         "name": "allowDeselect",
21         "owner": "Ext.selection.Model",
22         "doc": "<p>Allow users to deselect a record in a DataView, List or Grid. Only applicable when the SelectionModel's mode is 'SINGLE'. Defaults to false.</p>\n",
23         "linenr": 28,
24         "html_filename": "Model2.html"
25       },
26       {
27         "type": "Object",
28         "deprecated": null,
29         "alias": null,
30         "protected": false,
31         "tagname": "cfg",
32         "href": "Observable.html#Ext-util-Observable-cfg-listeners",
33         "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
34         "static": false,
35         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
36         "private": false,
37         "name": "listeners",
38         "owner": "Ext.util.Observable",
39         "doc": "<p>A config object containing one or more event handlers to be added to this object during initialization. This\nshould be a valid listeners config object as specified in the <a href=\"#/api/Ext.selection.Model-method-addListener\" rel=\"Ext.selection.Model-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple\nhandlers at once.</p>\n\n<p><strong>DOM events from ExtJS <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></strong></p>\n\n<p>While <em>some</em> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this is usually\nonly done when extra value can be added. For example the <a href=\"#/api/Ext.view.View\" rel=\"Ext.view.View\" class=\"docClass\">DataView</a>'s <strong><code><a href=\"#/api/Ext.view.View-event-itemclick\" rel=\"Ext.view.View-event-itemclick\" class=\"docClass\">itemclick</a></code></strong> event passing the node clicked on. To access DOM events directly from a\nchild element of a Component, we need to specify the <code>element</code> option to identify the Component property to add a\nDOM listener to:</p>\n\n<pre><code>new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n</code></pre>\n",
40         "linenr": 102,
41         "html_filename": "Observable.html"
42       },
43       {
44         "type": "String",
45         "deprecated": null,
46         "alias": null,
47         "protected": false,
48         "tagname": "cfg",
49         "href": "Model2.html#Ext-selection-Model-cfg-mode",
50         "shortDoc": "Modes of selection. ...",
51         "static": false,
52         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
53         "private": false,
54         "name": "mode",
55         "owner": "Ext.selection.Model",
56         "doc": "<p>Modes of selection.\nValid values are SINGLE, SIMPLE, and MULTI. Defaults to 'SINGLE'</p>\n",
57         "linenr": 22,
58         "html_filename": "Model2.html"
59       }
60     ],
61     "method": [
62       {
63         "deprecated": null,
64         "alias": null,
65         "protected": false,
66         "tagname": "method",
67         "href": "Observable.html#Ext-util-Observable-method-addEvents",
68         "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
69         "static": false,
70         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
71         "private": false,
72         "params": [
73           {
74             "type": "Object/String",
75             "optional": false,
76             "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",
77             "name": "o"
78           },
79           {
80             "type": "String...",
81             "optional": false,
82             "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",
83             "name": "more"
84           }
85         ],
86         "name": "addEvents",
87         "owner": "Ext.util.Observable",
88         "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
89         "linenr": 494,
90         "return": {
91           "type": "void",
92           "doc": "\n"
93         },
94         "html_filename": "Observable.html"
95       },
96       {
97         "deprecated": null,
98         "alias": null,
99         "protected": false,
100         "tagname": "method",
101         "href": "Observable.html#Ext-util-Observable-method-addListener",
102         "shortDoc": "Appends an event handler to this object. ...",
103         "static": false,
104         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
105         "private": false,
106         "params": [
107           {
108             "type": "String",
109             "optional": false,
110             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
111             "name": "eventName"
112           },
113           {
114             "type": "Function",
115             "optional": false,
116             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.selection.Model-method-fireEvent\" rel=\"Ext.selection.Model-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
117             "name": "handler"
118           },
119           {
120             "type": "Object",
121             "optional": true,
122             "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",
123             "name": "scope"
124           },
125           {
126             "type": "Object",
127             "optional": true,
128             "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",
129             "name": "options"
130           }
131         ],
132         "name": "addListener",
133         "owner": "Ext.util.Observable",
134         "doc": "<p>Appends an event handler to this object.</p>\n",
135         "linenr": 278,
136         "return": {
137           "type": "void",
138           "doc": "\n"
139         },
140         "html_filename": "Observable.html"
141       },
142       {
143         "deprecated": null,
144         "alias": null,
145         "protected": false,
146         "tagname": "method",
147         "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
148         "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
149         "static": false,
150         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
151         "private": false,
152         "params": [
153           {
154             "type": "Observable/Element",
155             "optional": false,
156             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
157             "name": "item"
158           },
159           {
160             "type": "Object/String",
161             "optional": false,
162             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
163             "name": "ename"
164           },
165           {
166             "type": "Function",
167             "optional": true,
168             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
169             "name": "fn"
170           },
171           {
172             "type": "Object",
173             "optional": true,
174             "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",
175             "name": "scope"
176           },
177           {
178             "type": "Object",
179             "optional": true,
180             "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",
181             "name": "opt"
182           }
183         ],
184         "name": "addManagedListener",
185         "owner": "Ext.util.Observable",
186         "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
187         "linenr": 156,
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": "Base3.html#Ext-Base-method-addStatics",
200         "shortDoc": "Add / override static properties of this class. ...",
201         "static": true,
202         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
203         "private": false,
204         "params": [
205           {
206             "type": "Object",
207             "optional": false,
208             "doc": "\n",
209             "name": "members"
210           }
211         ],
212         "name": "addStatics",
213         "owner": "Ext.Base",
214         "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",
215         "linenr": 388,
216         "return": {
217           "type": "Ext.Base",
218           "doc": "<p>this</p>\n"
219         },
220         "html_filename": "Base3.html"
221       },
222       {
223         "deprecated": null,
224         "alias": null,
225         "protected": false,
226         "tagname": "method",
227         "href": "Base3.html#Ext-Base-method-callOverridden",
228         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
229         "static": false,
230         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
231         "private": false,
232         "params": [
233           {
234             "type": "Array/Arguments",
235             "optional": false,
236             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
237             "name": "args"
238           }
239         ],
240         "name": "callOverridden",
241         "owner": "Ext.Base",
242         "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",
243         "linenr": 269,
244         "return": {
245           "type": "Mixed",
246           "doc": "<p>Returns the result after calling the overridden method</p>\n"
247         },
248         "html_filename": "Base3.html"
249       },
250       {
251         "deprecated": null,
252         "alias": null,
253         "protected": true,
254         "tagname": "method",
255         "href": "Base3.html#Ext-Base-method-callParent",
256         "shortDoc": "Call the parent's overridden method. ...",
257         "static": false,
258         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
259         "private": false,
260         "params": [
261           {
262             "type": "Array/Arguments",
263             "optional": false,
264             "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",
265             "name": "args"
266           }
267         ],
268         "name": "callParent",
269         "owner": "Ext.Base",
270         "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",
271         "linenr": 124,
272         "return": {
273           "type": "Mixed",
274           "doc": "<p>Returns the result from the superclass' method</p>\n"
275         },
276         "html_filename": "Base3.html"
277       },
278       {
279         "deprecated": null,
280         "alias": null,
281         "protected": false,
282         "tagname": "method",
283         "href": "Observable.html#Ext-util-Observable-method-capture",
284         "shortDoc": "Starts capture on the specified Observable. ...",
285         "static": true,
286         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
287         "private": false,
288         "params": [
289           {
290             "type": "Observable",
291             "optional": false,
292             "doc": "<p>The Observable to capture events from.</p>\n",
293             "name": "o"
294           },
295           {
296             "type": "Function",
297             "optional": false,
298             "doc": "<p>The function to call when an event is fired.</p>\n",
299             "name": "fn"
300           },
301           {
302             "type": "Object",
303             "optional": true,
304             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
305             "name": "scope"
306           }
307         ],
308         "name": "capture",
309         "owner": "Ext.util.Observable",
310         "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",
311         "linenr": 54,
312         "return": {
313           "type": "void",
314           "doc": "\n"
315         },
316         "html_filename": "Observable.html"
317       },
318       {
319         "deprecated": null,
320         "alias": null,
321         "protected": false,
322         "tagname": "method",
323         "href": "Observable.html#Ext-util-Observable-method-clearListeners",
324         "shortDoc": "Removes all listeners for this object including the managed listeners ...",
325         "static": false,
326         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
327         "private": false,
328         "params": [
329
330         ],
331         "name": "clearListeners",
332         "owner": "Ext.util.Observable",
333         "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
334         "linenr": 425,
335         "return": {
336           "type": "void",
337           "doc": "\n"
338         },
339         "html_filename": "Observable.html"
340       },
341       {
342         "deprecated": null,
343         "alias": null,
344         "protected": false,
345         "tagname": "method",
346         "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
347         "shortDoc": "Removes all managed listeners for this object. ...",
348         "static": false,
349         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
350         "private": false,
351         "params": [
352
353         ],
354         "name": "clearManagedListeners",
355         "owner": "Ext.util.Observable",
356         "doc": "<p>Removes all managed listeners for this object.</p>\n",
357         "linenr": 454,
358         "return": {
359           "type": "void",
360           "doc": "\n"
361         },
362         "html_filename": "Observable.html"
363       },
364       {
365         "deprecated": null,
366         "alias": null,
367         "protected": false,
368         "tagname": "method",
369         "href": "Base3.html#Ext-Base-method-create",
370         "shortDoc": "Create a new instance of this Class. ...",
371         "static": true,
372         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
373         "private": false,
374         "params": [
375
376         ],
377         "name": "create",
378         "owner": "Ext.Base",
379         "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",
380         "linenr": 329,
381         "return": {
382           "type": "Object",
383           "doc": "<p>the created instance.</p>\n"
384         },
385         "html_filename": "Base3.html"
386       },
387       {
388         "deprecated": null,
389         "alias": null,
390         "protected": false,
391         "tagname": "method",
392         "href": "Base3.html#Ext-Base-method-createAlias",
393         "shortDoc": "Create aliases for existing prototype methods. ...",
394         "static": true,
395         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
396         "private": false,
397         "params": [
398           {
399             "type": "String/Object",
400             "optional": false,
401             "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",
402             "name": "alias"
403           },
404           {
405             "type": "String/Object",
406             "optional": false,
407             "doc": "<p>The original method name</p>\n",
408             "name": "origin"
409           }
410         ],
411         "name": "createAlias",
412         "owner": "Ext.Base",
413         "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",
414         "linenr": 648,
415         "return": {
416           "type": "void",
417           "doc": "\n"
418         },
419         "html_filename": "Base3.html"
420       },
421       {
422         "deprecated": null,
423         "alias": null,
424         "protected": false,
425         "tagname": "method",
426         "href": "Model2.html#Ext-selection-Model-method-deselect",
427         "shortDoc": "Deselects a record instance by record instance or index. ...",
428         "static": false,
429         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
430         "private": false,
431         "params": [
432           {
433             "type": "Ext.data.Model/Index",
434             "optional": false,
435             "doc": "<p>An array of records or an index</p>\n",
436             "name": "records"
437           },
438           {
439             "type": "Boolean",
440             "optional": false,
441             "doc": "<p>Set to false to not fire a deselect event</p>\n",
442             "name": "suppressEvent"
443           }
444         ],
445         "name": "deselect",
446         "owner": "Ext.selection.Model",
447         "doc": "<p>Deselects a record instance by record instance or index.</p>\n",
448         "linenr": 262,
449         "return": {
450           "type": "void",
451           "doc": "\n"
452         },
453         "html_filename": "Model2.html"
454       },
455       {
456         "deprecated": null,
457         "alias": null,
458         "protected": false,
459         "tagname": "method",
460         "href": "Model2.html#Ext-selection-Model-method-deselectAll",
461         "shortDoc": "Deselect all records in the view. ...",
462         "static": false,
463         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
464         "private": false,
465         "params": [
466           {
467             "type": "Boolean",
468             "optional": false,
469             "doc": "<p>True to suppress any deselect events</p>\n",
470             "name": "suppressEvent"
471           }
472         ],
473         "name": "deselectAll",
474         "owner": "Ext.selection.Model",
475         "doc": "<p>Deselect all records in the view.</p>\n",
476         "linenr": 131,
477         "return": {
478           "type": "void",
479           "doc": "\n"
480         },
481         "html_filename": "Model2.html"
482       },
483       {
484         "deprecated": null,
485         "alias": null,
486         "protected": false,
487         "tagname": "method",
488         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
489         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
490         "static": false,
491         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
492         "private": false,
493         "params": [
494           {
495             "type": "String/[String]",
496             "optional": false,
497             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
498             "name": "events"
499           }
500         ],
501         "name": "enableBubble",
502         "owner": "Ext.util.Observable",
503         "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",
504         "linenr": 609,
505         "return": {
506           "type": "void",
507           "doc": "\n"
508         },
509         "html_filename": "Observable.html"
510       },
511       {
512         "deprecated": null,
513         "alias": null,
514         "protected": false,
515         "tagname": "method",
516         "href": "Observable.html#Ext-util-Observable-method-fireEvent",
517         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
518         "static": false,
519         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
520         "private": false,
521         "params": [
522           {
523             "type": "String",
524             "optional": false,
525             "doc": "<p>The name of the event to fire.</p>\n",
526             "name": "eventName"
527           },
528           {
529             "type": "Object...",
530             "optional": false,
531             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
532             "name": "args"
533           }
534         ],
535         "name": "fireEvent",
536         "owner": "Ext.util.Observable",
537         "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.selection.Model-method-addListener\" rel=\"Ext.selection.Model-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.selection.Model-method-enableBubble\" rel=\"Ext.selection.Model-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
538         "linenr": 233,
539         "return": {
540           "type": "Boolean",
541           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
542         },
543         "html_filename": "Observable.html"
544       },
545       {
546         "deprecated": null,
547         "alias": null,
548         "protected": false,
549         "tagname": "method",
550         "href": "Model2.html#Ext-selection-Model-method-getCount",
551         "shortDoc": "Gets the count of selected records. ...",
552         "static": false,
553         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
554         "private": false,
555         "params": [
556
557         ],
558         "name": "getCount",
559         "owner": "Ext.selection.Model",
560         "doc": "<p>Gets the count of selected records.</p>\n",
561         "linenr": 599,
562         "return": {
563           "type": "Number",
564           "doc": "<p>The number of selected records</p>\n"
565         },
566         "html_filename": "Model2.html"
567       },
568       {
569         "deprecated": null,
570         "alias": null,
571         "protected": false,
572         "tagname": "method",
573         "href": "Model2.html#Ext-selection-Model-method-getLastSelected",
574         "shortDoc": "Returns the last selected record. ...",
575         "static": false,
576         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
577         "private": false,
578         "params": [
579
580         ],
581         "name": "getLastSelected",
582         "owner": "Ext.selection.Model",
583         "doc": "<p>Returns the last selected record.</p>\n",
584         "linenr": 438,
585         "return": {
586           "type": "void",
587           "doc": "\n"
588         },
589         "html_filename": "Model2.html"
590       },
591       {
592         "deprecated": null,
593         "alias": null,
594         "protected": false,
595         "tagname": "method",
596         "href": "Base3.html#Ext-Base-method-getName",
597         "shortDoc": "Get the current class' name in string format. ...",
598         "static": false,
599         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
600         "private": false,
601         "params": [
602
603         ],
604         "name": "getName",
605         "owner": "Ext.Base",
606         "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",
607         "linenr": 631,
608         "return": {
609           "type": "String",
610           "doc": "<p>className</p>\n"
611         },
612         "html_filename": "Base3.html"
613       },
614       {
615         "deprecated": null,
616         "alias": null,
617         "protected": false,
618         "tagname": "method",
619         "href": "Model2.html#Ext-selection-Model-method-getSelection",
620         "shortDoc": "Returns an array of the currently selected records. ...",
621         "static": false,
622         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
623         "private": false,
624         "params": [
625
626         ],
627         "name": "getSelection",
628         "owner": "Ext.selection.Model",
629         "doc": "<p>Returns an array of the currently selected records.</p>\n",
630         "linenr": 449,
631         "return": {
632           "type": "Array",
633           "doc": "<p>The selected records</p>\n"
634         },
635         "html_filename": "Model2.html"
636       },
637       {
638         "deprecated": null,
639         "alias": null,
640         "protected": false,
641         "tagname": "method",
642         "href": "Model2.html#Ext-selection-Model-method-getSelectionMode",
643         "shortDoc": "Returns the current selectionMode. ...",
644         "static": false,
645         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
646         "private": false,
647         "params": [
648
649         ],
650         "name": "getSelectionMode",
651         "owner": "Ext.selection.Model",
652         "doc": "<p>Returns the current selectionMode. SINGLE, MULTI or SIMPLE.</p>\n",
653         "linenr": 457,
654         "return": {
655           "type": "String",
656           "doc": "<p>The selectionMode</p>\n"
657         },
658         "html_filename": "Model2.html"
659       },
660       {
661         "deprecated": null,
662         "alias": null,
663         "protected": false,
664         "tagname": "method",
665         "href": "Observable.html#Ext-util-Observable-method-hasListener",
666         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
667         "static": false,
668         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
669         "private": false,
670         "params": [
671           {
672             "type": "String",
673             "optional": false,
674             "doc": "<p>The name of the event to check for</p>\n",
675             "name": "eventName"
676           }
677         ],
678         "name": "hasListener",
679         "owner": "Ext.util.Observable",
680         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
681         "linenr": 530,
682         "return": {
683           "type": "Boolean",
684           "doc": "<p>True if the event is being listened for, else false</p>\n"
685         },
686         "html_filename": "Observable.html"
687       },
688       {
689         "deprecated": null,
690         "alias": null,
691         "protected": false,
692         "tagname": "method",
693         "href": "Model2.html#Ext-selection-Model-method-hasSelection",
694         "shortDoc": "Returns true if there are any a selected records. ...",
695         "static": false,
696         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
697         "private": false,
698         "params": [
699
700         ],
701         "name": "hasSelection",
702         "owner": "Ext.selection.Model",
703         "doc": "<p>Returns true if there are any a selected records.</p>\n",
704         "linenr": 502,
705         "return": {
706           "type": "Boolean",
707           "doc": "\n"
708         },
709         "html_filename": "Model2.html"
710       },
711       {
712         "deprecated": null,
713         "alias": null,
714         "protected": false,
715         "tagname": "method",
716         "href": "Base3.html#Ext-Base-method-implement",
717         "shortDoc": "Add methods / properties to the prototype of this class. ...",
718         "static": true,
719         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
720         "private": false,
721         "params": [
722           {
723             "type": "Object",
724             "optional": false,
725             "doc": "\n",
726             "name": "members"
727           }
728         ],
729         "name": "implement",
730         "owner": "Ext.Base",
731         "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",
732         "linenr": 415,
733         "return": {
734           "type": "void",
735           "doc": "\n"
736         },
737         "html_filename": "Base3.html"
738       },
739       {
740         "deprecated": null,
741         "alias": null,
742         "protected": true,
743         "tagname": "method",
744         "href": "Base3.html#Ext-Base-method-initConfig",
745         "shortDoc": "Initialize configuration for this class. ...",
746         "static": false,
747         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
748         "private": false,
749         "params": [
750           {
751             "type": "Object",
752             "optional": false,
753             "doc": "\n",
754             "name": "config"
755           }
756         ],
757         "name": "initConfig",
758         "owner": "Ext.Base",
759         "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",
760         "linenr": 63,
761         "return": {
762           "type": "Object",
763           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
764         },
765         "html_filename": "Base3.html"
766       },
767       {
768         "deprecated": null,
769         "alias": null,
770         "protected": false,
771         "tagname": "method",
772         "href": "Model2.html#Ext-selection-Model-method-isFocused",
773         "shortDoc": "Determines if this record is currently focused. ...",
774         "static": false,
775         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
776         "private": false,
777         "params": [
778           {
779             "type": "Object",
780             "optional": false,
781             "doc": "<p>.data.Record record</p>\n",
782             "name": "Ext"
783           }
784         ],
785         "name": "isFocused",
786         "owner": "Ext.selection.Model",
787         "doc": "<p>Determines if this record is currently focused.</p>\n",
788         "linenr": 420,
789         "return": {
790           "type": "void",
791           "doc": "\n"
792         },
793         "html_filename": "Model2.html"
794       },
795       {
796         "deprecated": null,
797         "alias": null,
798         "protected": false,
799         "tagname": "method",
800         "href": "Model2.html#Ext-selection-Model-method-isLocked",
801         "shortDoc": "Returns true if the selections are locked. ...",
802         "static": false,
803         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
804         "private": false,
805         "params": [
806
807         ],
808         "name": "isLocked",
809         "owner": "Ext.selection.Model",
810         "doc": "<p>Returns true if the selections are locked.</p>\n",
811         "linenr": 475,
812         "return": {
813           "type": "Boolean",
814           "doc": "\n"
815         },
816         "html_filename": "Model2.html"
817       },
818       {
819         "deprecated": null,
820         "alias": null,
821         "protected": false,
822         "tagname": "method",
823         "href": "Model2.html#Ext-selection-Model-method-isSelected",
824         "shortDoc": "Returns true if the specified row is selected. ...",
825         "static": false,
826         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
827         "private": false,
828         "params": [
829           {
830             "type": "Record/Number",
831             "optional": false,
832             "doc": "<p>The record or index of the record to check</p>\n",
833             "name": "record"
834           }
835         ],
836         "name": "isSelected",
837         "owner": "Ext.selection.Model",
838         "doc": "<p>Returns <tt>true</tt> if the specified row is selected.</p>\n",
839         "linenr": 492,
840         "return": {
841           "type": "Boolean",
842           "doc": "\n"
843         },
844         "html_filename": "Model2.html"
845       },
846       {
847         "deprecated": null,
848         "alias": {
849           "tagname": "alias",
850           "cls": "Ext.util.Observable",
851           "doc": null,
852           "owner": "addManagedListener"
853         },
854         "protected": false,
855         "tagname": "method",
856         "href": "Observable.html#Ext-util-Observable-method-mon",
857         "shortDoc": "Shorthand for addManagedListener. ...",
858         "static": false,
859         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
860         "private": false,
861         "params": [
862           {
863             "type": "Observable/Element",
864             "optional": false,
865             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
866             "name": "item"
867           },
868           {
869             "type": "Object/String",
870             "optional": false,
871             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
872             "name": "ename"
873           },
874           {
875             "type": "Function",
876             "optional": true,
877             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
878             "name": "fn"
879           },
880           {
881             "type": "Object",
882             "optional": true,
883             "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",
884             "name": "scope"
885           },
886           {
887             "type": "Object",
888             "optional": true,
889             "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",
890             "name": "opt"
891           }
892         ],
893         "name": "mon",
894         "owner": "Ext.util.Observable",
895         "doc": "<p>Shorthand for <a href=\"#/api/Ext.selection.Model-method-addManagedListener\" rel=\"Ext.selection.Model-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",
896         "linenr": 681,
897         "return": {
898           "type": "void",
899           "doc": "\n"
900         },
901         "html_filename": "Observable.html"
902       },
903       {
904         "deprecated": null,
905         "alias": {
906           "tagname": "alias",
907           "cls": "Ext.util.Observable",
908           "doc": null,
909           "owner": "removeManagedListener"
910         },
911         "protected": false,
912         "tagname": "method",
913         "href": "Observable.html#Ext-util-Observable-method-mun",
914         "shortDoc": "Shorthand for removeManagedListener. ...",
915         "static": false,
916         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
917         "private": false,
918         "params": [
919           {
920             "type": "Observable|Element",
921             "optional": false,
922             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
923             "name": "item"
924           },
925           {
926             "type": "Object|String",
927             "optional": false,
928             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
929             "name": "ename"
930           },
931           {
932             "type": "Function",
933             "optional": false,
934             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
935             "name": "fn"
936           },
937           {
938             "type": "Object",
939             "optional": false,
940             "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",
941             "name": "scope"
942           }
943         ],
944         "name": "mun",
945         "owner": "Ext.util.Observable",
946         "doc": "<p>Shorthand for <a href=\"#/api/Ext.selection.Model-method-removeManagedListener\" rel=\"Ext.selection.Model-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.selection.Model-method-mon\" rel=\"Ext.selection.Model-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
947         "linenr": 687,
948         "return": {
949           "type": "void",
950           "doc": "\n"
951         },
952         "html_filename": "Observable.html"
953       },
954       {
955         "deprecated": null,
956         "alias": null,
957         "protected": false,
958         "tagname": "method",
959         "href": "Observable.html#Ext-util-Observable-method-observe",
960         "shortDoc": "Sets observability on the passed class constructor. ...",
961         "static": true,
962         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
963         "private": false,
964         "params": [
965           {
966             "type": "Function",
967             "optional": false,
968             "doc": "<p>The class constructor to make observable.</p>\n",
969             "name": "c"
970           },
971           {
972             "type": "Object",
973             "optional": false,
974             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.selection.Model-method-addListener\" rel=\"Ext.selection.Model-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
975             "name": "listeners"
976           }
977         ],
978         "name": "observe",
979         "owner": "Ext.util.Observable",
980         "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",
981         "linenr": 69,
982         "return": {
983           "type": "void",
984           "doc": "\n"
985         },
986         "html_filename": "Observable.html"
987       },
988       {
989         "deprecated": null,
990         "alias": {
991           "tagname": "alias",
992           "cls": "Ext.util.Observable",
993           "doc": null,
994           "owner": "addListener"
995         },
996         "protected": false,
997         "tagname": "method",
998         "href": "Observable.html#Ext-util-Observable-method-on",
999         "shortDoc": "Shorthand for addListener. ...",
1000         "static": false,
1001         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1002         "private": false,
1003         "params": [
1004           {
1005             "type": "String",
1006             "optional": false,
1007             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
1008             "name": "eventName"
1009           },
1010           {
1011             "type": "Function",
1012             "optional": false,
1013             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.selection.Model-method-fireEvent\" rel=\"Ext.selection.Model-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
1014             "name": "handler"
1015           },
1016           {
1017             "type": "Object",
1018             "optional": true,
1019             "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",
1020             "name": "scope"
1021           },
1022           {
1023             "type": "Object",
1024             "optional": true,
1025             "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",
1026             "name": "options"
1027           }
1028         ],
1029         "name": "on",
1030         "owner": "Ext.util.Observable",
1031         "doc": "<p>Shorthand for <a href=\"#/api/Ext.selection.Model-method-addListener\" rel=\"Ext.selection.Model-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
1032         "linenr": 669,
1033         "return": {
1034           "type": "void",
1035           "doc": "\n"
1036         },
1037         "html_filename": "Observable.html"
1038       },
1039       {
1040         "deprecated": null,
1041         "alias": null,
1042         "protected": false,
1043         "tagname": "method",
1044         "href": "Base3.html#Ext-Base-method-override",
1045         "shortDoc": "Override prototype members of this class. ...",
1046         "static": true,
1047         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1048         "private": false,
1049         "params": [
1050           {
1051             "type": "Object",
1052             "optional": false,
1053             "doc": "\n",
1054             "name": "members"
1055           }
1056         ],
1057         "name": "override",
1058         "owner": "Ext.Base",
1059         "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",
1060         "linenr": 518,
1061         "return": {
1062           "type": "Ext.Base",
1063           "doc": "<p>this</p>\n"
1064         },
1065         "html_filename": "Base3.html"
1066       },
1067       {
1068         "deprecated": null,
1069         "alias": null,
1070         "protected": false,
1071         "tagname": "method",
1072         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1073         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
1074         "static": false,
1075         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1076         "private": false,
1077         "params": [
1078           {
1079             "type": "Object",
1080             "optional": false,
1081             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1082             "name": "origin"
1083           },
1084           {
1085             "type": "[String]",
1086             "optional": false,
1087             "doc": "<p>Array of event names to relay.</p>\n",
1088             "name": "events"
1089           },
1090           {
1091             "type": "Object",
1092             "optional": false,
1093             "doc": "\n",
1094             "name": "prefix"
1095           }
1096         ],
1097         "name": "relayEvents",
1098         "owner": "Ext.util.Observable",
1099         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
1100         "linenr": 573,
1101         "return": {
1102           "type": "void",
1103           "doc": "\n"
1104         },
1105         "html_filename": "Observable.html"
1106       },
1107       {
1108         "deprecated": null,
1109         "alias": null,
1110         "protected": false,
1111         "tagname": "method",
1112         "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1113         "shortDoc": "Removes all added captures from the Observable. ...",
1114         "static": true,
1115         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1116         "private": false,
1117         "params": [
1118           {
1119             "type": "Observable",
1120             "optional": false,
1121             "doc": "<p>The Observable to release</p>\n",
1122             "name": "o"
1123           }
1124         ],
1125         "name": "releaseCapture",
1126         "owner": "Ext.util.Observable",
1127         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
1128         "linenr": 44,
1129         "return": {
1130           "type": "void",
1131           "doc": "\n"
1132         },
1133         "html_filename": "Observable.html"
1134       },
1135       {
1136         "deprecated": null,
1137         "alias": null,
1138         "protected": false,
1139         "tagname": "method",
1140         "href": "Observable.html#Ext-util-Observable-method-removeListener",
1141         "shortDoc": "Removes an event handler. ...",
1142         "static": false,
1143         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1144         "private": false,
1145         "params": [
1146           {
1147             "type": "String",
1148             "optional": false,
1149             "doc": "<p>The type of event the handler was associated with.</p>\n",
1150             "name": "eventName"
1151           },
1152           {
1153             "type": "Function",
1154             "optional": false,
1155             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.selection.Model-method-addListener\" rel=\"Ext.selection.Model-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1156             "name": "handler"
1157           },
1158           {
1159             "type": "Object",
1160             "optional": true,
1161             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1162             "name": "scope"
1163           }
1164         ],
1165         "name": "removeListener",
1166         "owner": "Ext.util.Observable",
1167         "doc": "<p>Removes an event handler.</p>\n",
1168         "linenr": 392,
1169         "return": {
1170           "type": "void",
1171           "doc": "\n"
1172         },
1173         "html_filename": "Observable.html"
1174       },
1175       {
1176         "deprecated": null,
1177         "alias": null,
1178         "protected": false,
1179         "tagname": "method",
1180         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1181         "shortDoc": "Removes listeners that were added by the mon method. ...",
1182         "static": false,
1183         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1184         "private": false,
1185         "params": [
1186           {
1187             "type": "Observable|Element",
1188             "optional": false,
1189             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1190             "name": "item"
1191           },
1192           {
1193             "type": "Object|String",
1194             "optional": false,
1195             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1196             "name": "ename"
1197           },
1198           {
1199             "type": "Function",
1200             "optional": false,
1201             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1202             "name": "fn"
1203           },
1204           {
1205             "type": "Object",
1206             "optional": false,
1207             "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",
1208             "name": "scope"
1209           }
1210         ],
1211         "name": "removeManagedListener",
1212         "owner": "Ext.util.Observable",
1213         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.selection.Model-method-mon\" rel=\"Ext.selection.Model-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1214         "linenr": 197,
1215         "return": {
1216           "type": "void",
1217           "doc": "\n"
1218         },
1219         "html_filename": "Observable.html"
1220       },
1221       {
1222         "deprecated": null,
1223         "alias": null,
1224         "protected": false,
1225         "tagname": "method",
1226         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1227         "shortDoc": "Resumes firing events (see suspendEvents). ...",
1228         "static": false,
1229         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1230         "private": false,
1231         "params": [
1232
1233         ],
1234         "name": "resumeEvents",
1235         "owner": "Ext.util.Observable",
1236         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.selection.Model-method-suspendEvents\" rel=\"Ext.selection.Model-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",
1237         "linenr": 554,
1238         "return": {
1239           "type": "void",
1240           "doc": "\n"
1241         },
1242         "html_filename": "Observable.html"
1243       },
1244       {
1245         "deprecated": null,
1246         "alias": null,
1247         "protected": false,
1248         "tagname": "method",
1249         "href": "Model2.html#Ext-selection-Model-method-select",
1250         "shortDoc": "Selects a record instance by record instance or index. ...",
1251         "static": false,
1252         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1253         "private": false,
1254         "params": [
1255           {
1256             "type": "Ext.data.Model/Index",
1257             "optional": false,
1258             "doc": "<p>An array of records or an index</p>\n",
1259             "name": "records"
1260           },
1261           {
1262             "type": "Boolean",
1263             "optional": false,
1264             "doc": "\n",
1265             "name": "keepExisting"
1266           },
1267           {
1268             "type": "Boolean",
1269             "optional": false,
1270             "doc": "<p>Set to false to not fire a select event</p>\n",
1271             "name": "suppressEvent"
1272           }
1273         ],
1274         "name": "select",
1275         "owner": "Ext.selection.Model",
1276         "doc": "<p>Selects a record instance by record instance or index.</p>\n",
1277         "linenr": 252,
1278         "return": {
1279           "type": "void",
1280           "doc": "\n"
1281         },
1282         "html_filename": "Model2.html"
1283       },
1284       {
1285         "deprecated": null,
1286         "alias": null,
1287         "protected": false,
1288         "tagname": "method",
1289         "href": "Model2.html#Ext-selection-Model-method-selectAll",
1290         "shortDoc": "Select all records in the view. ...",
1291         "static": false,
1292         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1293         "private": false,
1294         "params": [
1295           {
1296             "type": "Boolean",
1297             "optional": false,
1298             "doc": "<p>True to suppress any selects event</p>\n",
1299             "name": "suppressEvent"
1300           }
1301         ],
1302         "name": "selectAll",
1303         "owner": "Ext.selection.Model",
1304         "doc": "<p>Select all records in the view.</p>\n",
1305         "linenr": 111,
1306         "return": {
1307           "type": "void",
1308           "doc": "\n"
1309         },
1310         "html_filename": "Model2.html"
1311       },
1312       {
1313         "deprecated": null,
1314         "alias": null,
1315         "protected": false,
1316         "tagname": "method",
1317         "href": "Model2.html#Ext-selection-Model-method-selectRange",
1318         "shortDoc": "Selects a range of rows if the selection model is not locked. ...",
1319         "static": false,
1320         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1321         "private": false,
1322         "params": [
1323           {
1324             "type": "Ext.data.Model/Number",
1325             "optional": false,
1326             "doc": "<p>The record or index of the first row in the range</p>\n",
1327             "name": "startRow"
1328           },
1329           {
1330             "type": "Ext.data.Model/Number",
1331             "optional": false,
1332             "doc": "<p>The record or index of the last row in the range</p>\n",
1333             "name": "endRow"
1334           },
1335           {
1336             "type": "Boolean",
1337             "optional": true,
1338             "doc": "<p>(optional) True to retain existing selections</p>\n",
1339             "name": "keepExisting"
1340           },
1341           {
1342             "type": "Object",
1343             "optional": false,
1344             "doc": "\n",
1345             "name": "dir"
1346           }
1347         ],
1348         "name": "selectRange",
1349         "owner": "Ext.selection.Model",
1350         "doc": "<p>Selects a range of rows if the selection model <a href=\"#/api/Ext.selection.Model-method-isLocked\" rel=\"Ext.selection.Model-method-isLocked\" class=\"docClass\">is not locked</a>.\nAll rows in between startRow and endRow are also selected.</p>\n",
1351         "linenr": 190,
1352         "return": {
1353           "type": "void",
1354           "doc": "\n"
1355         },
1356         "html_filename": "Model2.html"
1357       },
1358       {
1359         "deprecated": null,
1360         "alias": null,
1361         "protected": false,
1362         "tagname": "method",
1363         "href": "Model2.html#Ext-selection-Model-method-setLastFocused",
1364         "shortDoc": " ...",
1365         "static": false,
1366         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1367         "private": false,
1368         "params": [
1369           {
1370             "type": "Ext.data.Model",
1371             "optional": false,
1372             "doc": "<p>Set a record as the last focused record. This does NOT mean\nthat the record has been selected.</p>\n",
1373             "name": "record"
1374           },
1375           {
1376             "type": "Object",
1377             "optional": false,
1378             "doc": "\n",
1379             "name": "supressFocus"
1380           }
1381         ],
1382         "name": "setLastFocused",
1383         "owner": "Ext.selection.Model",
1384         "doc": "\n",
1385         "linenr": 408,
1386         "return": {
1387           "type": "void",
1388           "doc": "\n"
1389         },
1390         "html_filename": "Model2.html"
1391       },
1392       {
1393         "deprecated": null,
1394         "alias": null,
1395         "protected": false,
1396         "tagname": "method",
1397         "href": "Model2.html#Ext-selection-Model-method-setLocked",
1398         "shortDoc": "Locks the current selection and disables any changes from\nhappening to the selection. ...",
1399         "static": false,
1400         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1401         "private": false,
1402         "params": [
1403           {
1404             "type": "Boolean",
1405             "optional": false,
1406             "doc": "\n",
1407             "name": "locked"
1408           }
1409         ],
1410         "name": "setLocked",
1411         "owner": "Ext.selection.Model",
1412         "doc": "<p>Locks the current selection and disables any changes from\nhappening to the selection.</p>\n",
1413         "linenr": 483,
1414         "return": {
1415           "type": "void",
1416           "doc": "\n"
1417         },
1418         "html_filename": "Model2.html"
1419       },
1420       {
1421         "deprecated": null,
1422         "alias": null,
1423         "protected": false,
1424         "tagname": "method",
1425         "href": "Model2.html#Ext-selection-Model-method-setSelectionMode",
1426         "shortDoc": "Sets the current selectionMode. ...",
1427         "static": false,
1428         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1429         "private": false,
1430         "params": [
1431           {
1432             "type": "Object",
1433             "optional": false,
1434             "doc": "\n",
1435             "name": "selMode"
1436           }
1437         ],
1438         "name": "setSelectionMode",
1439         "owner": "Ext.selection.Model",
1440         "doc": "<p>Sets the current selectionMode. SINGLE, MULTI or SIMPLE.</p>\n",
1441         "linenr": 465,
1442         "return": {
1443           "type": "void",
1444           "doc": "\n"
1445         },
1446         "html_filename": "Model2.html"
1447       },
1448       {
1449         "deprecated": null,
1450         "alias": null,
1451         "protected": true,
1452         "tagname": "method",
1453         "href": "Base3.html#Ext-Base-method-statics",
1454         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1455         "static": false,
1456         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1457         "private": false,
1458         "params": [
1459
1460         ],
1461         "name": "statics",
1462         "owner": "Ext.Base",
1463         "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",
1464         "linenr": 199,
1465         "return": {
1466           "type": "Class",
1467           "doc": "\n"
1468         },
1469         "html_filename": "Base3.html"
1470       },
1471       {
1472         "deprecated": null,
1473         "alias": null,
1474         "protected": false,
1475         "tagname": "method",
1476         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1477         "shortDoc": "Suspends the firing of all events. ...",
1478         "static": false,
1479         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1480         "private": false,
1481         "params": [
1482           {
1483             "type": "Boolean",
1484             "optional": false,
1485             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.selection.Model-method-resumeEvents\" rel=\"Ext.selection.Model-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1486             "name": "queueSuspended"
1487           }
1488         ],
1489         "name": "suspendEvents",
1490         "owner": "Ext.util.Observable",
1491         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.selection.Model-method-resumeEvents\" rel=\"Ext.selection.Model-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1492         "linenr": 541,
1493         "return": {
1494           "type": "void",
1495           "doc": "\n"
1496         },
1497         "html_filename": "Observable.html"
1498       },
1499       {
1500         "deprecated": null,
1501         "alias": {
1502           "tagname": "alias",
1503           "cls": "Ext.util.Observable",
1504           "doc": null,
1505           "owner": "removeListener"
1506         },
1507         "protected": false,
1508         "tagname": "method",
1509         "href": "Observable.html#Ext-util-Observable-method-un",
1510         "shortDoc": "Shorthand for removeListener. ...",
1511         "static": false,
1512         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1513         "private": false,
1514         "params": [
1515           {
1516             "type": "String",
1517             "optional": false,
1518             "doc": "<p>The type of event the handler was associated with.</p>\n",
1519             "name": "eventName"
1520           },
1521           {
1522             "type": "Function",
1523             "optional": false,
1524             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.selection.Model-method-addListener\" rel=\"Ext.selection.Model-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1525             "name": "handler"
1526           },
1527           {
1528             "type": "Object",
1529             "optional": true,
1530             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1531             "name": "scope"
1532           }
1533         ],
1534         "name": "un",
1535         "owner": "Ext.util.Observable",
1536         "doc": "<p>Shorthand for <a href=\"#/api/Ext.selection.Model-method-removeListener\" rel=\"Ext.selection.Model-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1537         "linenr": 675,
1538         "return": {
1539           "type": "void",
1540           "doc": "\n"
1541         },
1542         "html_filename": "Observable.html"
1543       }
1544     ],
1545     "property": [
1546       {
1547         "type": "Object",
1548         "deprecated": null,
1549         "alias": null,
1550         "protected": false,
1551         "tagname": "property",
1552         "href": "Model2.html#Ext-selection-Model-property-selected",
1553         "static": false,
1554         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1555         "private": false,
1556         "name": "selected",
1557         "owner": "Ext.selection.Model",
1558         "doc": "<p>READ-ONLY A MixedCollection that maintains all of the currently selected\nrecords.</p>\n",
1559         "linenr": 34,
1560         "html_filename": "Model2.html"
1561       },
1562       {
1563         "type": "Class",
1564         "deprecated": null,
1565         "alias": null,
1566         "protected": true,
1567         "tagname": "property",
1568         "href": "Base3.html#Ext-Base-property-self",
1569         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1570         "static": false,
1571         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1572         "private": false,
1573         "name": "self",
1574         "owner": "Ext.Base",
1575         "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",
1576         "linenr": 18,
1577         "html_filename": "Base3.html"
1578       }
1579     ],
1580     "cssVar": [
1581
1582     ],
1583     "cssMixin": [
1584
1585     ],
1586     "event": [
1587       {
1588         "deprecated": null,
1589         "alias": null,
1590         "protected": false,
1591         "tagname": "event",
1592         "href": "Model2.html#Ext-selection-Model-event-selectionchange",
1593         "shortDoc": "Fired after a selection change has occurred ...",
1594         "static": false,
1595         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1596         "private": false,
1597         "params": [
1598           {
1599             "type": "Ext.selection.Model",
1600             "optional": false,
1601             "doc": "\n",
1602             "name": "this"
1603           },
1604           {
1605             "type": "Array",
1606             "optional": false,
1607             "doc": "<p>The selected records</p>\n",
1608             "name": "selected"
1609           },
1610           {
1611             "type": "Object",
1612             "tagname": "param",
1613             "name": "options",
1614             "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"
1615           }
1616         ],
1617         "name": "selectionchange",
1618         "owner": "Ext.selection.Model",
1619         "doc": "<p>Fired after a selection change has occurred</p>\n",
1620         "linenr": 57,
1621         "html_filename": "Model2.html"
1622       }
1623     ]
1624   },
1625   "singleton": false,
1626   "alias": null,
1627   "superclasses": [
1628     "Ext.Base",
1629     "Ext.util.Observable"
1630   ],
1631   "protected": false,
1632   "tagname": "class",
1633   "mixins": [
1634
1635   ],
1636   "href": "Model2.html#Ext-selection-Model",
1637   "subclasses": [
1638     "Ext.selection.RowModel"
1639   ],
1640   "static": false,
1641   "author": null,
1642   "component": false,
1643   "filename": "/mnt/ebs/nightly/git/SDK/platform/src/selection/Model.js",
1644   "private": false,
1645   "alternateClassNames": [
1646     "Ext.AbstractSelectionModel"
1647   ],
1648   "name": "Ext.selection.Model",
1649   "doc": "<p>Tracks what records are currently selected in a databound widget.</p>\n\n<p>This is an abstract class and is not meant to be directly used.</p>\n\n<p>DataBound UI widgets such as GridPanel, TreePanel, and ListView\nshould subclass AbstractStoreSelectionModel and provide a way\nto binding to the component.</p>\n\n<p>The abstract methods onSelectChange and onLastFocusChanged should\nbe implemented in these subclasses to update the UI widget.</p>\n",
1650   "mixedInto": [
1651
1652   ],
1653   "linenr": 1,
1654   "xtypes": [
1655
1656   ],
1657   "html_filename": "Model2.html",
1658   "extends": "Ext.util.Observable"
1659 });