Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.selection.CellModel.js
1 Ext.data.JsonP.Ext_selection_CellModel({
2   "tagname": "class",
3   "name": "Ext.selection.CellModel",
4   "doc": "\n",
5   "extends": "Ext.selection.Model",
6   "mixins": [
7
8   ],
9   "alternateClassNames": [
10
11   ],
12   "xtype": null,
13   "author": null,
14   "docauthor": null,
15   "singleton": false,
16   "private": true,
17   "cfg": [
18     {
19       "tagname": "cfg",
20       "name": "allowDeselect",
21       "member": "Ext.selection.Model",
22       "type": "Boolean",
23       "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",
24       "private": false,
25       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
26       "linenr": 28,
27       "html_filename": "Model2.html",
28       "href": "Model2.html#Ext-selection-Model-cfg-allowDeselect",
29       "shortDoc": "Allow users to deselect a record in a DataView, List or Grid. Only applicable when the SelectionModel's mode is 'SING..."
30     },
31     {
32       "tagname": "cfg",
33       "name": "enableKeyNav",
34       "member": "Ext.selection.CellModel",
35       "type": "Boolean",
36       "doc": "<p>Turns on/off keyboard navigation within the grid. Defaults to true.</p>\n",
37       "private": false,
38       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/selection/CellModel.js",
39       "linenr": 11,
40       "html_filename": "CellModel.html",
41       "href": "CellModel.html#Ext-selection-CellModel-cfg-enableKeyNav"
42     },
43     {
44       "tagname": "cfg",
45       "name": "listeners",
46       "member": "Ext.util.Observable",
47       "type": "Object",
48       "doc": "<p>(optional) <p>A config object containing one or more event handlers to be added to this\nobject during initialization.  This should be a valid listeners config object as specified in the\n<a href=\"#/api/Ext.selection.CellModel-method-addListener\" rel=\"Ext.selection.CellModel-method-addListener\" class=\"docClass\">addListener</a> example for attaching multiple handlers at once.</p></p>\n\n<br><p><b><u>DOM events from ExtJs <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a></u></b></p>\n\n\n<br><p>While <i>some</i> ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n<p>is usually only done when extra value can be added. For example the <a href=\"#/api/Ext.view.View\" rel=\"Ext.view.View\" class=\"docClass\">DataView</a>'s\n<b><code><a href=\"#/api/Ext.view.View--click\" rel=\"Ext.view.View--click\" class=\"docClass\">click</a></code></b> event passing the node clicked on. To access DOM\nevents directly from a child element of a Component, we need to specify the <code>element</code> option to\nidentify the Component property to add a DOM listener to:</p>\n\n<pre><code>new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n</code></pre>\n\n\n<p></p></p>\n",
49       "private": false,
50       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
51       "linenr": 103,
52       "html_filename": "Observable.html",
53       "href": "Observable.html#Ext-util-Observable-cfg-listeners",
54       "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization.  T..."
55     },
56     {
57       "tagname": "cfg",
58       "name": "mode",
59       "member": "Ext.selection.Model",
60       "type": "String",
61       "doc": "<p>Modes of selection.\nValid values are SINGLE, SIMPLE, and MULTI. Defaults to 'SINGLE'</p>\n",
62       "private": false,
63       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
64       "linenr": 22,
65       "html_filename": "Model2.html",
66       "href": "Model2.html#Ext-selection-Model-cfg-mode"
67     },
68     {
69       "tagname": "cfg",
70       "name": "preventWrap",
71       "member": "Ext.selection.CellModel",
72       "type": "Boolean",
73       "doc": "<p>Set this configuration to true to prevent wrapping around of selection as\na user navigates to the first or last column. Defaults to false.</p>\n",
74       "private": false,
75       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/selection/CellModel.js",
76       "linenr": 17,
77       "html_filename": "CellModel.html",
78       "href": "CellModel.html#Ext-selection-CellModel-cfg-preventWrap",
79       "shortDoc": "Set this configuration to true to prevent wrapping around of selection as\na user navigates to the first or last colum..."
80     }
81   ],
82   "method": [
83     {
84       "tagname": "method",
85       "name": "addEvents",
86       "member": "Ext.util.Observable",
87       "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
88       "params": [
89         {
90           "type": "Object/String",
91           "name": "o",
92           "doc": "<p>Either an object with event names as properties with a value of <code>true</code>\nor the first event name string if multiple event names are being passed as separate parameters.</p>\n",
93           "optional": false
94         },
95         {
96           "type": "String",
97           "name": "",
98           "doc": "<p>[additional] Optional additional event names if multiple event names are being passed as separate parameters.\nUsage:</p>\n\n<pre><code>this.addEvents('storeloaded', 'storecleared');\n</code></pre>\n\n",
99           "optional": false
100         }
101       ],
102       "return": {
103         "type": "void",
104         "doc": "\n"
105       },
106       "private": false,
107       "static": false,
108       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
109       "linenr": 452,
110       "html_filename": "Observable.html",
111       "href": "Observable.html#Ext-util-Observable-method-addEvents",
112       "shortDoc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n"
113     },
114     {
115       "tagname": "method",
116       "name": "addListener",
117       "member": "Ext.util.Observable",
118       "doc": "<p>Appends an event handler to this object.</p>\n",
119       "params": [
120         {
121           "type": "String",
122           "name": "eventName",
123           "doc": "<p>The name of the event to listen for. May also be an object who's property names are event names. See</p>\n",
124           "optional": false
125         },
126         {
127           "type": "Function",
128           "name": "handler",
129           "doc": "<p>The method the event invokes.</p>\n",
130           "optional": false
131         },
132         {
133           "type": "Object",
134           "name": "scope",
135           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
136           "optional": true
137         },
138         {
139           "type": "Object",
140           "name": "options",
141           "doc": "<p>(optional) An object containing handler configuration.\nproperties. This may contain any of the following properties:<ul>\n<li><b>scope</b> : Object<div class=\"sub-desc\">The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></div></li>\n<li><b>delay</b> : Number<div class=\"sub-desc\">The number of milliseconds to delay the invocation of the handler after the event fires.</div></li>\n<li><b>single</b> : Boolean<div class=\"sub-desc\">True to add a handler to handle just the next firing of the event, and then remove itself.</div></li>\n<li><b>buffer</b> : Number<div class=\"sub-desc\">Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> delayed\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is <em>not</em> invoked, but the new handler is scheduled in its place.</div></li>\n<li><b>target</b> : Observable<div class=\"sub-desc\">Only call the handler if the event was fired on the target Observable, <i>not</i>\nif the event was bubbled up from a child Observable.</div></li>\n<li><b>element</b> : String<div class=\"sub-desc\"><b>This option is only valid for listeners bound to <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a>.</b>\nThe name of a Component property which references an element to add a listener to.</p>\n\n<p>This option is useful during Component construction to add DOM event listeners to elements of <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Components</a> which\nwill exist only after the Component is rendered. For example, to add a click listener to a Panel's body:\n<pre><code>new Ext.panel.Panel({\n    title: 'The title',\n    listeners: {\n        click: this.handlePanelClick,\n        element: 'body'\n    }\n});\n</code></pre></p>\n\n\n<p>When added in this way, the options available are the options applicable to <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a></p>\n\n\n<p></div></li>\n</ul><br></p>\n\n<p>\n<b>Combining Options</b><br>\nUsing the options argument, it is possible to combine different types of listeners:<br>\n<br>\nA delayed, one-time listener.\n<pre><code>myPanel.on('hide', this.handleClick, this, {\nsingle: true,\ndelay: 100\n});</code></pre>\n<p>\n<b>Attaching multiple handlers in 1 call</b><br>\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple events. For example:\n<pre><code>myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n</code></pre>.\n<p>\n\n",
142           "optional": true
143         }
144       ],
145       "return": {
146         "type": "void",
147         "doc": "\n"
148       },
149       "private": false,
150       "static": false,
151       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
152       "linenr": 271,
153       "html_filename": "Observable.html",
154       "href": "Observable.html#Ext-util-Observable-method-addListener",
155       "shortDoc": "<p>Appends an event handler to this object.</p>\n"
156     },
157     {
158       "tagname": "method",
159       "name": "addManagedListener",
160       "member": "Ext.util.Observable",
161       "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n",
162       "params": [
163         {
164           "type": "Observable/Element",
165           "name": "item",
166           "doc": "<p>The item to which to add a listener/listeners.</p>\n",
167           "optional": false
168         },
169         {
170           "type": "Object/String",
171           "name": "ename",
172           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
173           "optional": false
174         },
175         {
176           "type": "Function",
177           "name": "fn",
178           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
179           "optional": false
180         },
181         {
182           "type": "Object",
183           "name": "scope",
184           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
185           "optional": false
186         },
187         {
188           "type": "Object",
189           "name": "opt",
190           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">addListener</a> options.</p>\n",
191           "optional": false
192         }
193       ],
194       "return": {
195         "type": "void",
196         "doc": "\n"
197       },
198       "private": false,
199       "static": false,
200       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
201       "linenr": 155,
202       "html_filename": "Observable.html",
203       "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
204       "shortDoc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n"
205     },
206     {
207       "tagname": "method",
208       "name": "capture",
209       "member": "Ext.util.Observable",
210       "doc": "<p>Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\n<b>before</b> the event is fired. If the supplied function returns false,\nthe event will not fire.</p>\n",
211       "params": [
212         {
213           "type": "Observable",
214           "name": "o",
215           "doc": "<p>The Observable to capture events from.</p>\n",
216           "optional": false
217         },
218         {
219           "type": "Function",
220           "name": "fn",
221           "doc": "<p>The function to call when an event is fired.</p>\n",
222           "optional": false
223         },
224         {
225           "type": "Object",
226           "name": "scope",
227           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to the Observable firing the event.</p>\n",
228           "optional": true
229         }
230       ],
231       "return": {
232         "type": "void",
233         "doc": "\n"
234       },
235       "private": false,
236       "static": true,
237       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
238       "linenr": 55,
239       "html_filename": "Observable.html",
240       "href": "Observable.html#Ext-util-Observable-method-capture",
241       "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..."
242     },
243     {
244       "tagname": "method",
245       "name": "clearListeners",
246       "member": "Ext.util.Observable",
247       "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
248       "params": [
249
250       ],
251       "return": {
252         "type": "void",
253         "doc": "\n"
254       },
255       "private": false,
256       "static": false,
257       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
258       "linenr": 383,
259       "html_filename": "Observable.html",
260       "href": "Observable.html#Ext-util-Observable-method-clearListeners",
261       "shortDoc": "<p>Removes all listeners for this object including the managed listeners</p>\n"
262     },
263     {
264       "tagname": "method",
265       "name": "clearManagedListeners",
266       "member": "Ext.util.Observable",
267       "doc": "<p>Removes all managed listeners for this object.</p>\n",
268       "params": [
269
270       ],
271       "return": {
272         "type": "void",
273         "doc": "\n"
274       },
275       "private": false,
276       "static": false,
277       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
278       "linenr": 412,
279       "html_filename": "Observable.html",
280       "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
281       "shortDoc": "<p>Removes all managed listeners for this object.</p>\n"
282     },
283     {
284       "tagname": "method",
285       "name": "deselect",
286       "member": "Ext.selection.Model",
287       "doc": "<p>Deselects a record instance by record instance or index.</p>\n",
288       "params": [
289         {
290           "type": "Ext.data.Model/Index",
291           "name": "records",
292           "doc": "<p>An array of records or an index</p>\n",
293           "optional": false
294         },
295         {
296           "type": "Boolean",
297           "name": "suppressEvent",
298           "doc": "<p>Set to false to not fire a deselect event</p>\n",
299           "optional": false
300         }
301       ],
302       "return": {
303         "type": "void",
304         "doc": "\n"
305       },
306       "private": false,
307       "static": false,
308       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
309       "linenr": 262,
310       "html_filename": "Model2.html",
311       "href": "Model2.html#Ext-selection-Model-method-deselect",
312       "shortDoc": "<p>Deselects a record instance by record instance or index.</p>\n"
313     },
314     {
315       "tagname": "method",
316       "name": "deselectAll",
317       "member": "Ext.selection.Model",
318       "doc": "<p>Deselect all records in the view.</p>\n",
319       "params": [
320         {
321           "type": "Boolean",
322           "name": "suppressEvent",
323           "doc": "<p>True to suppress any deselect events</p>\n",
324           "optional": false
325         }
326       ],
327       "return": {
328         "type": "void",
329         "doc": "\n"
330       },
331       "private": false,
332       "static": false,
333       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
334       "linenr": 131,
335       "html_filename": "Model2.html",
336       "href": "Model2.html#Ext-selection-Model-method-deselectAll",
337       "shortDoc": "<p>Deselect all records in the view.</p>\n"
338     },
339     {
340       "tagname": "method",
341       "name": "enableBubble",
342       "member": "Ext.util.Observable",
343       "doc": "<p>Enables events fired by this Observable to bubble up an owner hierarchy by calling\n<code>this.getBubbleTarget()</code> if present. There is no implementation in the Observable base class.</p>\n\n\n<p>This is commonly used by Ext.Components to bubble events to owner Containers. See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>. The default\nimplementation in <a href=\"#/api/Ext.Component\" rel=\"Ext.Component\" class=\"docClass\">Ext.Component</a> returns the Component's immediate owner. But if a known target is required, this can be overridden to\naccess the required target more quickly.</p>\n\n\n<p>Example:</p>\n\n\n<pre><code>Ext.override(Ext.form.field.Base, {\n//  Add functionality to Field&#39;s initComponent to enable the change event to bubble\ninitComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n    this.enableBubble('change');\n}),\n\n//  We know that we want Field&#39;s events to bubble directly to the FormPanel.\ngetBubbleTarget : function() {\n    if (!this.formPanel) {\n        this.formPanel = this.findParentByType('form');\n    }\n    return this.formPanel;\n}\n});\n\nvar myForm = new Ext.formPanel({\ntitle: 'User Details',\nitems: [{\n    ...\n}],\nlisteners: {\n    change: function() {\n        // Title goes red if form has been modified.\n        myForm.header.setStyle('color', 'red');\n    }\n}\n});\n</code></pre>\n\n",
344       "params": [
345         {
346           "type": "String/Array",
347           "name": "events",
348           "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
349           "optional": false
350         }
351       ],
352       "return": {
353         "type": "void",
354         "doc": "\n"
355       },
356       "private": false,
357       "static": false,
358       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
359       "linenr": 554,
360       "html_filename": "Observable.html",
361       "href": "Observable.html#Ext-util-Observable-method-enableBubble",
362       "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...."
363     },
364     {
365       "tagname": "method",
366       "name": "fireEvent",
367       "member": "Ext.util.Observable",
368       "doc": "<p>Fires the specified event with the passed parameters (minus the event name).</p>\n\n\n<p>An event may be set to bubble up an Observable parent hierarchy (See <a href=\"#/api/Ext.Component-method-getBubbleTarget\" rel=\"Ext.Component-method-getBubbleTarget\" class=\"docClass\">Ext.Component.getBubbleTarget</a>)\nby calling <a href=\"#/api/Ext.selection.CellModel-method-enableBubble\" rel=\"Ext.selection.CellModel-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n\n",
369       "params": [
370         {
371           "type": "String",
372           "name": "eventName",
373           "doc": "<p>The name of the event to fire.</p>\n",
374           "optional": false
375         },
376         {
377           "type": "Object...",
378           "name": "args",
379           "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
380           "optional": false
381         }
382       ],
383       "return": {
384         "type": "Boolean",
385         "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
386       },
387       "private": false,
388       "static": false,
389       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
390       "linenr": 232,
391       "html_filename": "Observable.html",
392       "href": "Observable.html#Ext-util-Observable-method-fireEvent",
393       "shortDoc": "Fires the specified event with the passed parameters (minus the event name).\n\n\nAn event may be set to bubble up an Ob..."
394     },
395     {
396       "tagname": "method",
397       "name": "getCurrentPosition",
398       "member": "Ext.selection.CellModel",
399       "doc": "<p>Returns the current position in the format {row: row, column: column}</p>\n",
400       "params": [
401
402       ],
403       "return": {
404         "type": "void",
405         "doc": "\n"
406       },
407       "private": false,
408       "static": false,
409       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/selection/CellModel.js",
410       "linenr": 120,
411       "html_filename": "CellModel.html",
412       "href": "CellModel.html#Ext-selection-CellModel-method-getCurrentPosition",
413       "shortDoc": "<p>Returns the current position in the format {row: row, column: column}</p>\n"
414     },
415     {
416       "tagname": "method",
417       "name": "getLastSelected",
418       "member": "Ext.selection.Model",
419       "doc": "<p>Returns the last selected record.</p>\n",
420       "params": [
421
422       ],
423       "return": {
424         "type": "void",
425         "doc": "\n"
426       },
427       "private": false,
428       "static": false,
429       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
430       "linenr": 410,
431       "html_filename": "Model2.html",
432       "href": "Model2.html#Ext-selection-Model-method-getLastSelected",
433       "shortDoc": "<p>Returns the last selected record.</p>\n"
434     },
435     {
436       "tagname": "method",
437       "name": "getSelection",
438       "member": "Ext.selection.Model",
439       "doc": "<p>Returns an array of the currently selected records.</p>\n",
440       "params": [
441
442       ],
443       "return": {
444         "type": "void",
445         "doc": "\n"
446       },
447       "private": false,
448       "static": false,
449       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
450       "linenr": 421,
451       "html_filename": "Model2.html",
452       "href": "Model2.html#Ext-selection-Model-method-getSelection",
453       "shortDoc": "<p>Returns an array of the currently selected records.</p>\n"
454     },
455     {
456       "tagname": "method",
457       "name": "getSelectionMode",
458       "member": "Ext.selection.Model",
459       "doc": "<p>Returns the current selectionMode. SINGLE, MULTI or SIMPLE.</p>\n",
460       "params": [
461
462       ],
463       "return": {
464         "type": "void",
465         "doc": "\n"
466       },
467       "private": false,
468       "static": false,
469       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
470       "linenr": 428,
471       "html_filename": "Model2.html",
472       "href": "Model2.html#Ext-selection-Model-method-getSelectionMode",
473       "shortDoc": "<p>Returns the current selectionMode. SINGLE, MULTI or SIMPLE.</p>\n"
474     },
475     {
476       "tagname": "method",
477       "name": "hasListener",
478       "member": "Ext.util.Observable",
479       "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
480       "params": [
481         {
482           "type": "String",
483           "name": "eventName",
484           "doc": "<p>The name of the event to check for</p>\n",
485           "optional": false
486         }
487       ],
488       "return": {
489         "type": "Boolean",
490         "doc": "<p>True if the event is being listened for, else false</p>\n"
491       },
492       "private": false,
493       "static": false,
494       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
495       "linenr": 480,
496       "html_filename": "Observable.html",
497       "href": "Observable.html#Ext-util-Observable-method-hasListener",
498       "shortDoc": "<p>Checks to see if this object has any listeners for a specified event</p>\n"
499     },
500     {
501       "tagname": "method",
502       "name": "hasSelection",
503       "member": "Ext.selection.Model",
504       "doc": "<p>Returns true if there is a selected record.</p>\n",
505       "params": [
506
507       ],
508       "return": {
509         "type": "Boolean",
510         "doc": "\n"
511       },
512       "private": false,
513       "static": false,
514       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
515       "linenr": 472,
516       "html_filename": "Model2.html",
517       "href": "Model2.html#Ext-selection-Model-method-hasSelection",
518       "shortDoc": "<p>Returns true if there is a selected record.</p>\n"
519     },
520     {
521       "tagname": "method",
522       "name": "isFocused",
523       "member": "Ext.selection.Model",
524       "doc": "<p>Determines if this record is currently focused.</p>\n",
525       "params": [
526         {
527           "type": "Object",
528           "name": "Ext",
529           "doc": "<p>.data.Record record</p>\n",
530           "optional": false
531         }
532       ],
533       "return": {
534         "type": "void",
535         "doc": "\n"
536       },
537       "private": false,
538       "static": false,
539       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
540       "linenr": 392,
541       "html_filename": "Model2.html",
542       "href": "Model2.html#Ext-selection-Model-method-isFocused",
543       "shortDoc": "<p>Determines if this record is currently focused.</p>\n"
544     },
545     {
546       "tagname": "method",
547       "name": "isLocked",
548       "member": "Ext.selection.Model",
549       "doc": "<p>Returns true if the selections are locked.</p>\n",
550       "params": [
551
552       ],
553       "return": {
554         "type": "Boolean",
555         "doc": "\n"
556       },
557       "private": false,
558       "static": false,
559       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
560       "linenr": 445,
561       "html_filename": "Model2.html",
562       "href": "Model2.html#Ext-selection-Model-method-isLocked",
563       "shortDoc": "<p>Returns true if the selections are locked.</p>\n"
564     },
565     {
566       "tagname": "method",
567       "name": "isSelected",
568       "member": "Ext.selection.Model",
569       "doc": "<p>Returns <tt>true</tt> if the specified row is selected.</p>\n",
570       "params": [
571         {
572           "type": "Record/Number",
573           "name": "record",
574           "doc": "<p>The record or index of the record to check</p>\n",
575           "optional": false
576         }
577       ],
578       "return": {
579         "type": "Boolean",
580         "doc": "\n"
581       },
582       "private": false,
583       "static": false,
584       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
585       "linenr": 462,
586       "html_filename": "Model2.html",
587       "href": "Model2.html#Ext-selection-Model-method-isSelected",
588       "shortDoc": "<p>Returns <tt>true</tt> if the specified row is selected.</p>\n"
589     },
590     {
591       "tagname": "method",
592       "name": "observe",
593       "member": "Ext.util.Observable",
594       "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",
595       "params": [
596         {
597           "type": "Function",
598           "name": "c",
599           "doc": "<p>The class constructor to make observable.</p>\n",
600           "optional": false
601         },
602         {
603           "type": "Object",
604           "name": "listeners",
605           "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.selection.CellModel-method-addListener\" rel=\"Ext.selection.CellModel-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
606           "optional": false
607         }
608       ],
609       "return": {
610         "type": "void",
611         "doc": "\n"
612       },
613       "private": false,
614       "static": true,
615       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
616       "linenr": 69,
617       "html_filename": "Observable.html",
618       "href": "Observable.html#Ext-util-Observable-method-observe",
619       "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..."
620     },
621     {
622       "tagname": "method",
623       "name": "on",
624       "member": "Ext.util.Observable",
625       "doc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.selection.CellModel-method-addListener\" rel=\"Ext.selection.CellModel-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n",
626       "params": [
627         {
628           "type": "String",
629           "name": "eventName",
630           "doc": "<p>The type of event to listen for</p>\n",
631           "optional": false
632         },
633         {
634           "type": "Function",
635           "name": "handler",
636           "doc": "<p>The method the event invokes</p>\n",
637           "optional": false
638         },
639         {
640           "type": "Object",
641           "name": "scope",
642           "doc": "<p>(optional) The scope (<code><b>this</b></code> reference) in which the handler function is executed.\n<b>If omitted, defaults to the object which fired the event.</b></p>\n",
643           "optional": true
644         },
645         {
646           "type": "Object",
647           "name": "options",
648           "doc": "<p>(optional) An object containing handler configuration.</p>\n",
649           "optional": true
650         }
651       ],
652       "return": {
653         "type": "void",
654         "doc": "\n"
655       },
656       "private": false,
657       "static": false,
658       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
659       "linenr": 616,
660       "html_filename": "Observable.html",
661       "href": "Observable.html#Ext-util-Observable-method-on",
662       "shortDoc": "<p>Appends an event handler to this object (shorthand for <a href=\"#/api/Ext.selection.CellModel-method-addListener\" rel=\"Ext.selection.CellModel-method-addListener\" class=\"docClass\">addListener</a>.)</p>\n"
663     },
664     {
665       "tagname": "method",
666       "name": "relayEvents",
667       "member": "Ext.util.Observable",
668       "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n",
669       "params": [
670         {
671           "type": "Object",
672           "name": "origin",
673           "doc": "<p>The Observable whose events this object is to relay.</p>\n",
674           "optional": false
675         },
676         {
677           "type": "Array",
678           "name": "events",
679           "doc": "<p>Array of event names to relay.</p>\n",
680           "optional": false
681         },
682         {
683           "type": "Object",
684           "name": "prefix",
685           "doc": "\n",
686           "optional": false
687         }
688       ],
689       "return": {
690         "type": "void",
691         "doc": "\n"
692       },
693       "private": false,
694       "static": false,
695       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
696       "linenr": 520,
697       "html_filename": "Observable.html",
698       "href": "Observable.html#Ext-util-Observable-method-relayEvents",
699       "shortDoc": "<p>Relays selected events from the specified Observable as if the events were fired by <code><b>this</b></code>.</p>\n"
700     },
701     {
702       "tagname": "method",
703       "name": "releaseCapture",
704       "member": "Ext.util.Observable",
705       "doc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n",
706       "params": [
707         {
708           "type": "Observable",
709           "name": "o",
710           "doc": "<p>The Observable to release</p>\n",
711           "optional": false
712         }
713       ],
714       "return": {
715         "type": "void",
716         "doc": "\n"
717       },
718       "private": false,
719       "static": true,
720       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
721       "linenr": 46,
722       "html_filename": "Observable.html",
723       "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
724       "shortDoc": "<p>Removes <b>all</b> added captures from the Observable.</p>\n"
725     },
726     {
727       "tagname": "method",
728       "name": "removeListener",
729       "member": "Ext.util.Observable",
730       "doc": "<p>Removes an event handler.</p>\n",
731       "params": [
732         {
733           "type": "String",
734           "name": "eventName",
735           "doc": "<p>The type of event the handler was associated with.</p>\n",
736           "optional": false
737         },
738         {
739           "type": "Function",
740           "name": "handler",
741           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.selection.CellModel-method-addListener\" rel=\"Ext.selection.CellModel-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
742           "optional": false
743         },
744         {
745           "type": "Object",
746           "name": "scope",
747           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
748           "optional": true
749         }
750       ],
751       "return": {
752         "type": "void",
753         "doc": "\n"
754       },
755       "private": false,
756       "static": false,
757       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
758       "linenr": 352,
759       "html_filename": "Observable.html",
760       "href": "Observable.html#Ext-util-Observable-method-removeListener",
761       "shortDoc": "<p>Removes an event handler.</p>\n"
762     },
763     {
764       "tagname": "method",
765       "name": "removeManagedListener",
766       "member": "Ext.util.Observable",
767       "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.selection.CellModel--mon\" rel=\"Ext.selection.CellModel--mon\" class=\"docClass\">mon</a> method.</p>\n",
768       "params": [
769         {
770           "type": "Observable|Element",
771           "name": "item",
772           "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
773           "optional": false
774         },
775         {
776           "type": "Object|String",
777           "name": "ename",
778           "doc": "<p>The event name, or an object containing event name properties.</p>\n",
779           "optional": false
780         },
781         {
782           "type": "Function",
783           "name": "fn",
784           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the handler function.</p>\n",
785           "optional": false
786         },
787         {
788           "type": "Object",
789           "name": "scope",
790           "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this\nis the scope (<code>this</code> reference) in which the handler function is executed.</p>\n",
791           "optional": false
792         }
793       ],
794       "return": {
795         "type": "void",
796         "doc": "\n"
797       },
798       "private": false,
799       "static": false,
800       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
801       "linenr": 196,
802       "html_filename": "Observable.html",
803       "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
804       "shortDoc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.selection.CellModel--mon\" rel=\"Ext.selection.CellModel--mon\" class=\"docClass\">mon</a> method.</p>\n"
805     },
806     {
807       "tagname": "method",
808       "name": "resumeEvents",
809       "member": "Ext.util.Observable",
810       "doc": "<p>Resume firing events. (see <a href=\"#/api/Ext.selection.CellModel-method-suspendEvents\" rel=\"Ext.selection.CellModel-method-suspendEvents\" class=\"docClass\">suspendEvents</a>)\nIf events were suspended using the <code><b>queueSuspended</b></code> parameter, then all\nevents fired during event suspension will be sent to any listeners now.</p>\n",
811       "params": [
812
813       ],
814       "return": {
815         "type": "void",
816         "doc": "\n"
817       },
818       "private": false,
819       "static": false,
820       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
821       "linenr": 502,
822       "html_filename": "Observable.html",
823       "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
824       "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..."
825     },
826     {
827       "tagname": "method",
828       "name": "select",
829       "member": "Ext.selection.Model",
830       "doc": "<p>Selects a record instance by record instance or index.</p>\n",
831       "params": [
832         {
833           "type": "Ext.data.Model/Index",
834           "name": "records",
835           "doc": "<p>An array of records or an index</p>\n",
836           "optional": false
837         },
838         {
839           "type": "Boolean",
840           "name": "keepExisting",
841           "doc": "\n",
842           "optional": false
843         },
844         {
845           "type": "Boolean",
846           "name": "suppressEvent",
847           "doc": "<p>Set to false to not fire a select event</p>\n",
848           "optional": false
849         }
850       ],
851       "return": {
852         "type": "void",
853         "doc": "\n"
854       },
855       "private": false,
856       "static": false,
857       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
858       "linenr": 252,
859       "html_filename": "Model2.html",
860       "href": "Model2.html#Ext-selection-Model-method-select",
861       "shortDoc": "<p>Selects a record instance by record instance or index.</p>\n"
862     },
863     {
864       "tagname": "method",
865       "name": "selectAll",
866       "member": "Ext.selection.Model",
867       "doc": "<p>Select all records in the view.</p>\n",
868       "params": [
869         {
870           "type": "Boolean",
871           "name": "suppressEvent",
872           "doc": "<p>True to suppress any selects event</p>\n",
873           "optional": false
874         }
875       ],
876       "return": {
877         "type": "void",
878         "doc": "\n"
879       },
880       "private": false,
881       "static": false,
882       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
883       "linenr": 111,
884       "html_filename": "Model2.html",
885       "href": "Model2.html#Ext-selection-Model-method-selectAll",
886       "shortDoc": "<p>Select all records in the view.</p>\n"
887     },
888     {
889       "tagname": "method",
890       "name": "selectRange",
891       "member": "Ext.selection.Model",
892       "doc": "<p>Selects a range of rows if the selection model <a href=\"#/api/Ext.selection.CellModel-method-isLocked\" rel=\"Ext.selection.CellModel-method-isLocked\" class=\"docClass\">is not locked</a>.\nAll rows in between startRow and endRow are also selected.</p>\n",
893       "params": [
894         {
895           "type": "Ext.data.Model/Number",
896           "name": "startRow",
897           "doc": "<p>The record or index of the first row in the range</p>\n",
898           "optional": false
899         },
900         {
901           "type": "Ext.data.Model/Number",
902           "name": "endRow",
903           "doc": "<p>The record or index of the last row in the range</p>\n",
904           "optional": false
905         },
906         {
907           "type": "Boolean",
908           "name": "keepExisting",
909           "doc": "<p>(optional) True to retain existing selections</p>\n",
910           "optional": true
911         },
912         {
913           "type": "Object",
914           "name": "dir",
915           "doc": "\n",
916           "optional": false
917         }
918       ],
919       "return": {
920         "type": "void",
921         "doc": "\n"
922       },
923       "private": false,
924       "static": false,
925       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
926       "linenr": 190,
927       "html_filename": "Model2.html",
928       "href": "Model2.html#Ext-selection-Model-method-selectRange",
929       "shortDoc": "Selects a range of rows if the selection model is not locked.\nAll rows in between startRow and endRow are also select..."
930     },
931     {
932       "tagname": "method",
933       "name": "setCurrentPosition",
934       "member": "Ext.selection.CellModel",
935       "doc": "<p>Sets the current position</p>\n",
936       "params": [
937         {
938           "type": "Object",
939           "name": "position",
940           "doc": "<p>The position to set.</p>\n",
941           "optional": false
942         }
943       ],
944       "return": {
945         "type": "void",
946         "doc": "\n"
947       },
948       "private": false,
949       "static": false,
950       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/selection/CellModel.js",
951       "linenr": 127,
952       "html_filename": "CellModel.html",
953       "href": "CellModel.html#Ext-selection-CellModel-method-setCurrentPosition",
954       "shortDoc": "<p>Sets the current position</p>\n"
955     },
956     {
957       "tagname": "method",
958       "name": "setLastFocused",
959       "member": "Ext.selection.Model",
960       "doc": "\n",
961       "params": [
962         {
963           "type": "Ext.data.Model",
964           "name": "record",
965           "doc": "<p>Set a record as the last focused record. This does NOT mean\nthat the record has been selected.</p>\n",
966           "optional": false
967         },
968         {
969           "type": "Object",
970           "name": "supressFocus",
971           "doc": "\n",
972           "optional": false
973         }
974       ],
975       "return": {
976         "type": "void",
977         "doc": "\n"
978       },
979       "private": false,
980       "static": false,
981       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
982       "linenr": 380,
983       "html_filename": "Model2.html",
984       "href": "Model2.html#Ext-selection-Model-method-setLastFocused",
985       "shortDoc": "\n"
986     },
987     {
988       "tagname": "method",
989       "name": "setLocked",
990       "member": "Ext.selection.Model",
991       "doc": "<p>Locks the current selection and disables any changes from\nhappening to the selection.</p>\n",
992       "params": [
993         {
994           "type": "Boolean",
995           "name": "locked",
996           "doc": "\n",
997           "optional": false
998         }
999       ],
1000       "return": {
1001         "type": "void",
1002         "doc": "\n"
1003       },
1004       "private": false,
1005       "static": false,
1006       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
1007       "linenr": 453,
1008       "html_filename": "Model2.html",
1009       "href": "Model2.html#Ext-selection-Model-method-setLocked",
1010       "shortDoc": "<p>Locks the current selection and disables any changes from\nhappening to the selection.</p>\n"
1011     },
1012     {
1013       "tagname": "method",
1014       "name": "setSelectionMode",
1015       "member": "Ext.selection.Model",
1016       "doc": "<p>Sets the current selectionMode. SINGLE, MULTI or SIMPLE.</p>\n",
1017       "params": [
1018         {
1019           "type": "Object",
1020           "name": "selMode",
1021           "doc": "\n",
1022           "optional": false
1023         }
1024       ],
1025       "return": {
1026         "type": "void",
1027         "doc": "\n"
1028       },
1029       "private": false,
1030       "static": false,
1031       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
1032       "linenr": 435,
1033       "html_filename": "Model2.html",
1034       "href": "Model2.html#Ext-selection-Model-method-setSelectionMode",
1035       "shortDoc": "<p>Sets the current selectionMode. SINGLE, MULTI or SIMPLE.</p>\n"
1036     },
1037     {
1038       "tagname": "method",
1039       "name": "suspendEvents",
1040       "member": "Ext.util.Observable",
1041       "doc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.selection.CellModel-method-resumeEvents\" rel=\"Ext.selection.CellModel-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1042       "params": [
1043         {
1044           "type": "Boolean",
1045           "name": "queueSuspended",
1046           "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.selection.CellModel-method-resumeEvents\" rel=\"Ext.selection.CellModel-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events;</p>\n",
1047           "optional": false
1048         }
1049       ],
1050       "return": {
1051         "type": "void",
1052         "doc": "\n"
1053       },
1054       "private": false,
1055       "static": false,
1056       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1057       "linenr": 490,
1058       "html_filename": "Observable.html",
1059       "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1060       "shortDoc": "<p>Suspend the firing of all events. (see <a href=\"#/api/Ext.selection.CellModel-method-resumeEvents\" rel=\"Ext.selection.CellModel-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n"
1061     },
1062     {
1063       "tagname": "method",
1064       "name": "un",
1065       "member": "Ext.util.Observable",
1066       "doc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.selection.CellModel-method-removeListener\" rel=\"Ext.selection.CellModel-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n",
1067       "params": [
1068         {
1069           "type": "String",
1070           "name": "eventName",
1071           "doc": "<p>The type of event the handler was associated with.</p>\n",
1072           "optional": false
1073         },
1074         {
1075           "type": "Function",
1076           "name": "handler",
1077           "doc": "<p>The handler to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.selection.CellModel-method-addListener\" rel=\"Ext.selection.CellModel-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
1078           "optional": false
1079         },
1080         {
1081           "type": "Object",
1082           "name": "scope",
1083           "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1084           "optional": true
1085         }
1086       ],
1087       "return": {
1088         "type": "void",
1089         "doc": "\n"
1090       },
1091       "private": false,
1092       "static": false,
1093       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js",
1094       "linenr": 608,
1095       "html_filename": "Observable.html",
1096       "href": "Observable.html#Ext-util-Observable-method-un",
1097       "shortDoc": "<p>Removes an event handler (shorthand for <a href=\"#/api/Ext.selection.CellModel-method-removeListener\" rel=\"Ext.selection.CellModel-method-removeListener\" class=\"docClass\">removeListener</a>.)</p>\n"
1098     }
1099   ],
1100   "property": [
1101     {
1102       "tagname": "property",
1103       "name": "selected",
1104       "member": "Ext.selection.Model",
1105       "type": "Object",
1106       "doc": "<p>READ-ONLY A MixedCollection that maintains all of the currently selected\nrecords.</p>\n",
1107       "private": false,
1108       "static": false,
1109       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
1110       "linenr": 34,
1111       "html_filename": "Model2.html",
1112       "href": "Model2.html#Ext-selection-Model-property-selected"
1113     }
1114   ],
1115   "event": [
1116     {
1117       "tagname": "event",
1118       "name": "deselect",
1119       "member": "Ext.selection.CellModel",
1120       "doc": "<p>Fired after a cell is deselected</p>\n",
1121       "params": [
1122         {
1123           "type": "Ext.selection.CellModel",
1124           "name": "this",
1125           "doc": "\n",
1126           "optional": false
1127         },
1128         {
1129           "type": "Ext.data.Model",
1130           "name": "record",
1131           "doc": "<p>The record of the deselected cell</p>\n",
1132           "optional": false
1133         },
1134         {
1135           "type": "Number",
1136           "name": "row",
1137           "doc": "<p>The row index deselected</p>\n",
1138           "optional": false
1139         },
1140         {
1141           "type": "Number",
1142           "name": "column",
1143           "doc": "<p>The column index deselected</p>\n",
1144           "optional": false
1145         }
1146       ],
1147       "private": false,
1148       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/selection/CellModel.js",
1149       "linenr": 26,
1150       "html_filename": "CellModel.html",
1151       "href": "CellModel.html#Ext-selection-CellModel-event-deselect",
1152       "shortDoc": "<p>Fired after a cell is deselected</p>\n"
1153     },
1154     {
1155       "tagname": "event",
1156       "name": "select",
1157       "member": "Ext.selection.CellModel",
1158       "doc": "<p>Fired after a cell is selected</p>\n",
1159       "params": [
1160         {
1161           "type": "Ext.selection.CellModel",
1162           "name": "this",
1163           "doc": "\n",
1164           "optional": false
1165         },
1166         {
1167           "type": "Ext.data.Model",
1168           "name": "record",
1169           "doc": "<p>The record of the selected cell</p>\n",
1170           "optional": false
1171         },
1172         {
1173           "type": "Number",
1174           "name": "row",
1175           "doc": "<p>The row index selected</p>\n",
1176           "optional": false
1177         },
1178         {
1179           "type": "Number",
1180           "name": "column",
1181           "doc": "<p>The column index selected</p>\n",
1182           "optional": false
1183         }
1184       ],
1185       "private": false,
1186       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/selection/CellModel.js",
1187       "linenr": 36,
1188       "html_filename": "CellModel.html",
1189       "href": "CellModel.html#Ext-selection-CellModel-event-select",
1190       "shortDoc": "<p>Fired after a cell is selected</p>\n"
1191     },
1192     {
1193       "tagname": "event",
1194       "name": "selectionchange",
1195       "member": "Ext.selection.Model",
1196       "doc": "<p>Fired after a selection change has occurred</p>\n",
1197       "params": [
1198         {
1199           "type": "Ext.selection.Model",
1200           "name": "this",
1201           "doc": "\n",
1202           "optional": false
1203         },
1204         {
1205           "type": "Array",
1206           "name": "selected",
1207           "doc": "<p>The selected records</p>\n",
1208           "optional": false
1209         }
1210       ],
1211       "private": false,
1212       "filename": "/Users/nick/Projects/sencha/SDK/platform/src/selection/Model.js",
1213       "linenr": 57,
1214       "html_filename": "Model2.html",
1215       "href": "Model2.html#Ext-selection-Model-event-selectionchange",
1216       "shortDoc": "<p>Fired after a selection change has occurred</p>\n"
1217     }
1218   ],
1219   "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/selection/CellModel.js",
1220   "linenr": 1,
1221   "html_filename": "CellModel.html",
1222   "href": "CellModel.html#Ext-selection-CellModel",
1223   "cssVar": [
1224
1225   ],
1226   "cssMixin": [
1227
1228   ],
1229   "component": false,
1230   "superclasses": [
1231     "Ext.util.Observable",
1232     "Ext.selection.Model"
1233   ],
1234   "subclasses": [
1235
1236   ],
1237   "mixedInto": [
1238
1239   ],
1240   "allMixins": [
1241
1242   ]
1243 });