Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.grid.property.Property.js
1 Ext.data.JsonP.Ext_grid_property_Property({
2   "allMixins": [
3     "Ext.util.Observable"
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9       {
10         "type": "String",
11         "deprecated": null,
12         "alias": null,
13         "protected": false,
14         "tagname": "cfg",
15         "href": "Model.html#Ext-data-Model-cfg-idProperty",
16         "static": false,
17         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
18         "private": false,
19         "name": "idProperty",
20         "owner": "Ext.data.Model",
21         "doc": "<p>The name of the field treated as this Model's unique id (defaults to 'id').</p>\n",
22         "linenr": 521,
23         "html_filename": "Model.html"
24       },
25       {
26         "type": "Object",
27         "deprecated": null,
28         "alias": null,
29         "protected": false,
30         "tagname": "cfg",
31         "href": "Observable.html#Ext-util-Observable-cfg-listeners",
32         "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
33         "static": false,
34         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
35         "private": false,
36         "name": "listeners",
37         "owner": "Ext.util.Observable",
38         "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.grid.property.Property-method-addListener\" rel=\"Ext.grid.property.Property-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",
39         "linenr": 102,
40         "html_filename": "Observable.html"
41       },
42       {
43         "type": "String",
44         "deprecated": null,
45         "alias": null,
46         "protected": false,
47         "tagname": "cfg",
48         "href": "Model.html#Ext-data-Model-cfg-persistenceProperty",
49         "shortDoc": "The property on this Persistable object that its data is saved to. ...",
50         "static": false,
51         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
52         "private": false,
53         "name": "persistenceProperty",
54         "owner": "Ext.data.Model",
55         "doc": "<p>The property on this Persistable object that its data is saved to.\nDefaults to 'data' (e.g. all persistable data resides in this.data.)</p>\n",
56         "linenr": 503,
57         "html_filename": "Model.html"
58       }
59     ],
60     "method": [
61       {
62         "deprecated": null,
63         "alias": null,
64         "href": "Property.html#Ext-grid-property-Property-method-constructor",
65         "tagname": "method",
66         "protected": false,
67         "shortDoc": " ...",
68         "static": false,
69         "params": [
70           {
71             "type": "Object",
72             "optional": false,
73             "doc": "<p>A data object in the format:</p>\n\n<pre><code>{\n    name: [name],\n    value: [value]\n}</code></pre>\n\n\n<p>The specified value's type\nwill be read automatically by the grid to determine the type of editor to use when displaying it.</p>\n",
74             "name": "config"
75           }
76         ],
77         "private": false,
78         "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Property.js",
79         "doc": "\n",
80         "owner": "Ext.grid.property.Property",
81         "name": "Property",
82         "html_filename": "Property.html",
83         "return": {
84           "type": "Object",
85           "doc": "\n"
86         },
87         "linenr": 1
88       },
89       {
90         "deprecated": null,
91         "alias": null,
92         "protected": false,
93         "tagname": "method",
94         "href": "Observable.html#Ext-util-Observable-method-addEvents",
95         "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
96         "static": false,
97         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
98         "private": false,
99         "params": [
100           {
101             "type": "Object/String",
102             "optional": false,
103             "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",
104             "name": "o"
105           },
106           {
107             "type": "String...",
108             "optional": false,
109             "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",
110             "name": "more"
111           }
112         ],
113         "name": "addEvents",
114         "owner": "Ext.util.Observable",
115         "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
116         "linenr": 494,
117         "return": {
118           "type": "void",
119           "doc": "\n"
120         },
121         "html_filename": "Observable.html"
122       },
123       {
124         "deprecated": null,
125         "alias": null,
126         "protected": false,
127         "tagname": "method",
128         "href": "Observable.html#Ext-util-Observable-method-addListener",
129         "shortDoc": "Appends an event handler to this object. ...",
130         "static": false,
131         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
132         "private": false,
133         "params": [
134           {
135             "type": "String",
136             "optional": false,
137             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
138             "name": "eventName"
139           },
140           {
141             "type": "Function",
142             "optional": false,
143             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.grid.property.Property-method-fireEvent\" rel=\"Ext.grid.property.Property-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
144             "name": "handler"
145           },
146           {
147             "type": "Object",
148             "optional": true,
149             "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",
150             "name": "scope"
151           },
152           {
153             "type": "Object",
154             "optional": true,
155             "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",
156             "name": "options"
157           }
158         ],
159         "name": "addListener",
160         "owner": "Ext.util.Observable",
161         "doc": "<p>Appends an event handler to this object.</p>\n",
162         "linenr": 278,
163         "return": {
164           "type": "void",
165           "doc": "\n"
166         },
167         "html_filename": "Observable.html"
168       },
169       {
170         "deprecated": null,
171         "alias": null,
172         "protected": false,
173         "tagname": "method",
174         "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
175         "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
176         "static": false,
177         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
178         "private": false,
179         "params": [
180           {
181             "type": "Observable/Element",
182             "optional": false,
183             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
184             "name": "item"
185           },
186           {
187             "type": "Object/String",
188             "optional": false,
189             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
190             "name": "ename"
191           },
192           {
193             "type": "Function",
194             "optional": true,
195             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
196             "name": "fn"
197           },
198           {
199             "type": "Object",
200             "optional": true,
201             "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",
202             "name": "scope"
203           },
204           {
205             "type": "Object",
206             "optional": true,
207             "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",
208             "name": "opt"
209           }
210         ],
211         "name": "addManagedListener",
212         "owner": "Ext.util.Observable",
213         "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
214         "linenr": 156,
215         "return": {
216           "type": "void",
217           "doc": "\n"
218         },
219         "html_filename": "Observable.html"
220       },
221       {
222         "deprecated": null,
223         "alias": null,
224         "protected": false,
225         "tagname": "method",
226         "href": "Base3.html#Ext-Base-method-addStatics",
227         "shortDoc": "Add / override static properties of this class. ...",
228         "static": true,
229         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
230         "private": false,
231         "params": [
232           {
233             "type": "Object",
234             "optional": false,
235             "doc": "\n",
236             "name": "members"
237           }
238         ],
239         "name": "addStatics",
240         "owner": "Ext.Base",
241         "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",
242         "linenr": 388,
243         "return": {
244           "type": "Ext.Base",
245           "doc": "<p>this</p>\n"
246         },
247         "html_filename": "Base3.html"
248       },
249       {
250         "deprecated": null,
251         "alias": null,
252         "protected": false,
253         "tagname": "method",
254         "href": "Model.html#Ext-data-Model-method-beginEdit",
255         "shortDoc": "Begin an edit. ...",
256         "static": false,
257         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
258         "private": false,
259         "params": [
260
261         ],
262         "name": "beginEdit",
263         "owner": "Ext.data.Model",
264         "doc": "<p>Begin an edit. While in edit mode, no events (e.g.. the <code>update</code> event)\nare relayed to the containing store. When an edit has begun, it must be followed\nby either <a href=\"#/api/Ext.grid.property.Property-method-endEdit\" rel=\"Ext.grid.property.Property-method-endEdit\" class=\"docClass\">endEdit</a> or <a href=\"#/api/Ext.grid.property.Property-method-cancelEdit\" rel=\"Ext.grid.property.Property-method-cancelEdit\" class=\"docClass\">cancelEdit</a>.</p>\n",
265         "linenr": 725,
266         "return": {
267           "type": "void",
268           "doc": "\n"
269         },
270         "html_filename": "Model.html"
271       },
272       {
273         "deprecated": null,
274         "alias": null,
275         "protected": false,
276         "tagname": "method",
277         "href": "Base3.html#Ext-Base-method-callOverridden",
278         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
279         "static": false,
280         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
281         "private": false,
282         "params": [
283           {
284             "type": "Array/Arguments",
285             "optional": false,
286             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
287             "name": "args"
288           }
289         ],
290         "name": "callOverridden",
291         "owner": "Ext.Base",
292         "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",
293         "linenr": 269,
294         "return": {
295           "type": "Mixed",
296           "doc": "<p>Returns the result after calling the overridden method</p>\n"
297         },
298         "html_filename": "Base3.html"
299       },
300       {
301         "deprecated": null,
302         "alias": null,
303         "protected": true,
304         "tagname": "method",
305         "href": "Base3.html#Ext-Base-method-callParent",
306         "shortDoc": "Call the parent's overridden method. ...",
307         "static": false,
308         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
309         "private": false,
310         "params": [
311           {
312             "type": "Array/Arguments",
313             "optional": false,
314             "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",
315             "name": "args"
316           }
317         ],
318         "name": "callParent",
319         "owner": "Ext.Base",
320         "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",
321         "linenr": 124,
322         "return": {
323           "type": "Mixed",
324           "doc": "<p>Returns the result from the superclass' method</p>\n"
325         },
326         "html_filename": "Base3.html"
327       },
328       {
329         "deprecated": null,
330         "alias": null,
331         "protected": false,
332         "tagname": "method",
333         "href": "Model.html#Ext-data-Model-method-cancelEdit",
334         "shortDoc": "Cancels all changes made in the current edit operation. ...",
335         "static": false,
336         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
337         "private": false,
338         "params": [
339
340         ],
341         "name": "cancelEdit",
342         "owner": "Ext.data.Model",
343         "doc": "<p>Cancels all changes made in the current edit operation.</p>\n",
344         "linenr": 740,
345         "return": {
346           "type": "void",
347           "doc": "\n"
348         },
349         "html_filename": "Model.html"
350       },
351       {
352         "deprecated": null,
353         "alias": null,
354         "protected": false,
355         "tagname": "method",
356         "href": "Observable.html#Ext-util-Observable-method-capture",
357         "shortDoc": "Starts capture on the specified Observable. ...",
358         "static": true,
359         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
360         "private": false,
361         "params": [
362           {
363             "type": "Observable",
364             "optional": false,
365             "doc": "<p>The Observable to capture events from.</p>\n",
366             "name": "o"
367           },
368           {
369             "type": "Function",
370             "optional": false,
371             "doc": "<p>The function to call when an event is fired.</p>\n",
372             "name": "fn"
373           },
374           {
375             "type": "Object",
376             "optional": true,
377             "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
378             "name": "scope"
379           }
380         ],
381         "name": "capture",
382         "owner": "Ext.util.Observable",
383         "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",
384         "linenr": 54,
385         "return": {
386           "type": "void",
387           "doc": "\n"
388         },
389         "html_filename": "Observable.html"
390       },
391       {
392         "deprecated": null,
393         "alias": null,
394         "protected": false,
395         "tagname": "method",
396         "href": "Observable.html#Ext-util-Observable-method-clearListeners",
397         "shortDoc": "Removes all listeners for this object including the managed listeners ...",
398         "static": false,
399         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
400         "private": false,
401         "params": [
402
403         ],
404         "name": "clearListeners",
405         "owner": "Ext.util.Observable",
406         "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
407         "linenr": 425,
408         "return": {
409           "type": "void",
410           "doc": "\n"
411         },
412         "html_filename": "Observable.html"
413       },
414       {
415         "deprecated": null,
416         "alias": null,
417         "protected": false,
418         "tagname": "method",
419         "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
420         "shortDoc": "Removes all managed listeners for this object. ...",
421         "static": false,
422         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
423         "private": false,
424         "params": [
425
426         ],
427         "name": "clearManagedListeners",
428         "owner": "Ext.util.Observable",
429         "doc": "<p>Removes all managed listeners for this object.</p>\n",
430         "linenr": 454,
431         "return": {
432           "type": "void",
433           "doc": "\n"
434         },
435         "html_filename": "Observable.html"
436       },
437       {
438         "deprecated": null,
439         "alias": null,
440         "protected": false,
441         "tagname": "method",
442         "href": "Model.html#Ext-data-Model-method-commit",
443         "shortDoc": "Usually called by the Ext.data.Store which owns the model instance. ...",
444         "static": false,
445         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
446         "private": false,
447         "params": [
448           {
449             "type": "Boolean",
450             "optional": true,
451             "doc": "<p>(optional) True to skip notification of the owning\nstore of the change (defaults to false)</p>\n",
452             "name": "silent"
453           }
454         ],
455         "name": "commit",
456         "owner": "Ext.data.Model",
457         "doc": "<p>Usually called by the <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a> which owns the model instance.\nCommits all changes made to the instance since either creation or the last commit operation.</p>\n\n<p>Developers should subscribe to the <a href=\"#/api/Ext.data.Store-event-update\" rel=\"Ext.data.Store-event-update\" class=\"docClass\">Ext.data.Store.update</a> event\nto have their code notified of commit operations.</p>\n\n",
458         "linenr": 866,
459         "return": {
460           "type": "void",
461           "doc": "\n"
462         },
463         "html_filename": "Model.html"
464       },
465       {
466         "deprecated": null,
467         "alias": null,
468         "protected": false,
469         "tagname": "method",
470         "href": "Model.html#Ext-data-Model-method-copy",
471         "shortDoc": "Creates a copy (clone) of this Model instance. ...",
472         "static": false,
473         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
474         "private": false,
475         "params": [
476           {
477             "type": "String",
478             "optional": true,
479             "doc": "<p>(optional) A new id, defaults to the id\nof the instance being copied. See <code><a href=\"#/api/Ext.grid.property.Property-method-id\" rel=\"Ext.grid.property.Property-method-id\" class=\"docClass\">id</a></code>.\nTo generate a phantom instance with a new id use:</p>\n\n<pre><code>var rec = record.copy(); // clone the record\nExt.data.Model.id(rec); // automatically generate a unique sequential id\n</code></pre>\n\n",
480             "name": "id"
481           }
482         ],
483         "name": "copy",
484         "owner": "Ext.data.Model",
485         "doc": "<p>Creates a copy (clone) of this Model instance.</p>\n",
486         "linenr": 887,
487         "return": {
488           "type": "Record",
489           "doc": "\n"
490         },
491         "html_filename": "Model.html"
492       },
493       {
494         "deprecated": null,
495         "alias": null,
496         "protected": false,
497         "tagname": "method",
498         "href": "Base3.html#Ext-Base-method-create",
499         "shortDoc": "Create a new instance of this Class. ...",
500         "static": true,
501         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
502         "private": false,
503         "params": [
504
505         ],
506         "name": "create",
507         "owner": "Ext.Base",
508         "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",
509         "linenr": 329,
510         "return": {
511           "type": "Object",
512           "doc": "<p>the created instance.</p>\n"
513         },
514         "html_filename": "Base3.html"
515       },
516       {
517         "deprecated": null,
518         "alias": null,
519         "protected": false,
520         "tagname": "method",
521         "href": "Base3.html#Ext-Base-method-createAlias",
522         "shortDoc": "Create aliases for existing prototype methods. ...",
523         "static": true,
524         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
525         "private": false,
526         "params": [
527           {
528             "type": "String/Object",
529             "optional": false,
530             "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",
531             "name": "alias"
532           },
533           {
534             "type": "String/Object",
535             "optional": false,
536             "doc": "<p>The original method name</p>\n",
537             "name": "origin"
538           }
539         ],
540         "name": "createAlias",
541         "owner": "Ext.Base",
542         "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",
543         "linenr": 648,
544         "return": {
545           "type": "void",
546           "doc": "\n"
547         },
548         "html_filename": "Base3.html"
549       },
550       {
551         "deprecated": null,
552         "alias": null,
553         "protected": false,
554         "tagname": "method",
555         "href": "Model.html#Ext-data-Model-method-destroy",
556         "shortDoc": "Destroys the model using the configured proxy ...",
557         "static": false,
558         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
559         "private": false,
560         "params": [
561           {
562             "type": "Object",
563             "optional": false,
564             "doc": "<p>Options to pass to the proxy</p>\n",
565             "name": "options"
566           }
567         ],
568         "name": "destroy",
569         "owner": "Ext.data.Model",
570         "doc": "<p>Destroys the model using the configured proxy</p>\n",
571         "linenr": 1015,
572         "return": {
573           "type": "Ext.data.Model",
574           "doc": "<p>The Model instance</p>\n"
575         },
576         "html_filename": "Model.html"
577       },
578       {
579         "deprecated": null,
580         "alias": null,
581         "protected": false,
582         "tagname": "method",
583         "href": "Observable.html#Ext-util-Observable-method-enableBubble",
584         "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
585         "static": false,
586         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
587         "private": false,
588         "params": [
589           {
590             "type": "String/[String]",
591             "optional": false,
592             "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
593             "name": "events"
594           }
595         ],
596         "name": "enableBubble",
597         "owner": "Ext.util.Observable",
598         "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",
599         "linenr": 609,
600         "return": {
601           "type": "void",
602           "doc": "\n"
603         },
604         "html_filename": "Observable.html"
605       },
606       {
607         "deprecated": null,
608         "alias": null,
609         "protected": false,
610         "tagname": "method",
611         "href": "Model.html#Ext-data-Model-method-endEdit",
612         "shortDoc": "End an edit. ...",
613         "static": false,
614         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
615         "private": false,
616         "params": [
617           {
618             "type": "Boolean",
619             "optional": false,
620             "doc": "<p>True to not notify the store of the change</p>\n",
621             "name": "silent"
622           }
623         ],
624         "name": "endEdit",
625         "owner": "Ext.data.Model",
626         "doc": "<p>End an edit. If any data was modified, the containing store is notified\n(ie, the store's <code>update</code> event will fire).</p>\n",
627         "linenr": 757,
628         "return": {
629           "type": "void",
630           "doc": "\n"
631         },
632         "html_filename": "Model.html"
633       },
634       {
635         "deprecated": null,
636         "alias": null,
637         "protected": false,
638         "tagname": "method",
639         "href": "Observable.html#Ext-util-Observable-method-fireEvent",
640         "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
641         "static": false,
642         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
643         "private": false,
644         "params": [
645           {
646             "type": "String",
647             "optional": false,
648             "doc": "<p>The name of the event to fire.</p>\n",
649             "name": "eventName"
650           },
651           {
652             "type": "Object...",
653             "optional": false,
654             "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
655             "name": "args"
656           }
657         ],
658         "name": "fireEvent",
659         "owner": "Ext.util.Observable",
660         "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.grid.property.Property-method-addListener\" rel=\"Ext.grid.property.Property-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.grid.property.Property-method-enableBubble\" rel=\"Ext.grid.property.Property-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
661         "linenr": 233,
662         "return": {
663           "type": "Boolean",
664           "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
665         },
666         "html_filename": "Observable.html"
667       },
668       {
669         "deprecated": null,
670         "alias": null,
671         "protected": false,
672         "tagname": "method",
673         "href": "Model.html#Ext-data-Model-method-get",
674         "shortDoc": "Returns the value of the given field ...",
675         "static": false,
676         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
677         "private": false,
678         "params": [
679           {
680             "type": "String",
681             "optional": false,
682             "doc": "<p>The field to fetch the value for</p>\n",
683             "name": "fieldName"
684           }
685         ],
686         "name": "get",
687         "owner": "Ext.data.Model",
688         "doc": "<p>Returns the value of the given field</p>\n",
689         "linenr": 625,
690         "return": {
691           "type": "Mixed",
692           "doc": "<p>The value</p>\n"
693         },
694         "html_filename": "Model.html"
695       },
696       {
697         "deprecated": null,
698         "alias": null,
699         "protected": false,
700         "tagname": "method",
701         "href": "Model.html#Ext-data-Model-method-getAssociatedData",
702         "shortDoc": "Gets all of the data from this Models loaded associations. ...",
703         "static": false,
704         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
705         "private": false,
706         "params": [
707
708         ],
709         "name": "getAssociatedData",
710         "owner": "Ext.data.Model",
711         "doc": "<p>Gets all of the data from this Models <em>loaded</em> associations.\nIt does this recursively - for example if we have a User which\nhasMany Orders, and each Order hasMany OrderItems, it will return an object like this:\n{</p>\n\n<pre><code>orders: [\n    {\n        id: 123,\n        status: 'shipped',\n        orderItems: [\n            ...\n        ]\n    }\n]\n</code></pre>\n\n<p>}</p>\n",
712         "linenr": 1126,
713         "return": {
714           "type": "Object",
715           "doc": "<p>The nested data set for the Model's loaded associations</p>\n"
716         },
717         "html_filename": "Model.html"
718       },
719       {
720         "deprecated": null,
721         "alias": null,
722         "protected": false,
723         "tagname": "method",
724         "href": "Model.html#Ext-data-Model-method-getChanges",
725         "shortDoc": "Gets a hash of only the fields that have been modified since this Model was created or commited. ...",
726         "static": false,
727         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
728         "private": false,
729         "params": [
730
731         ],
732         "name": "getChanges",
733         "owner": "Ext.data.Model",
734         "doc": "<p>Gets a hash of only the fields that have been modified since this Model was created or commited.</p>\n",
735         "linenr": 775,
736         "return": {
737           "type": "void",
738           "doc": "<p>Object</p>\n"
739         },
740         "html_filename": "Model.html"
741       },
742       {
743         "deprecated": null,
744         "alias": null,
745         "protected": false,
746         "tagname": "method",
747         "href": "Model.html#Ext-data-Model-method-getId",
748         "shortDoc": "Returns the unique ID allocated to this model instance as defined by idProperty ...",
749         "static": false,
750         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
751         "private": false,
752         "params": [
753
754         ],
755         "name": "getId",
756         "owner": "Ext.data.Model",
757         "doc": "<p>Returns the unique ID allocated to this model instance as defined by <a href=\"#/api/Ext.grid.property.Property-cfg-idProperty\" rel=\"Ext.grid.property.Property-cfg-idProperty\" class=\"docClass\">idProperty</a></p>\n",
758         "linenr": 1048,
759         "return": {
760           "type": "Number",
761           "doc": "<p>The id</p>\n"
762         },
763         "html_filename": "Model.html"
764       },
765       {
766         "deprecated": null,
767         "alias": null,
768         "protected": false,
769         "tagname": "method",
770         "href": "Base3.html#Ext-Base-method-getName",
771         "shortDoc": "Get the current class' name in string format. ...",
772         "static": false,
773         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
774         "private": false,
775         "params": [
776
777         ],
778         "name": "getName",
779         "owner": "Ext.Base",
780         "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",
781         "linenr": 631,
782         "return": {
783           "type": "String",
784           "doc": "<p>className</p>\n"
785         },
786         "html_filename": "Base3.html"
787       },
788       {
789         "deprecated": null,
790         "alias": null,
791         "protected": false,
792         "tagname": "method",
793         "href": "Model.html#Ext-data-Model-method-getProxy",
794         "shortDoc": "Returns the configured Proxy for this Model ...",
795         "static": false,
796         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
797         "private": false,
798         "params": [
799
800         ],
801         "name": "getProxy",
802         "owner": "Ext.data.Model",
803         "doc": "<p>Returns the configured Proxy for this Model</p>\n",
804         "linenr": 924,
805         "return": {
806           "type": "Ext.data.proxy.Proxy",
807           "doc": "<p>The proxy</p>\n"
808         },
809         "html_filename": "Model.html"
810       },
811       {
812         "deprecated": null,
813         "alias": null,
814         "protected": false,
815         "tagname": "method",
816         "href": "Observable.html#Ext-util-Observable-method-hasListener",
817         "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
818         "static": false,
819         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
820         "private": false,
821         "params": [
822           {
823             "type": "String",
824             "optional": false,
825             "doc": "<p>The name of the event to check for</p>\n",
826             "name": "eventName"
827           }
828         ],
829         "name": "hasListener",
830         "owner": "Ext.util.Observable",
831         "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
832         "linenr": 530,
833         "return": {
834           "type": "Boolean",
835           "doc": "<p>True if the event is being listened for, else false</p>\n"
836         },
837         "html_filename": "Observable.html"
838       },
839       {
840         "deprecated": null,
841         "alias": null,
842         "protected": false,
843         "tagname": "method",
844         "href": "Model.html#Ext-data-Model-method-id",
845         "shortDoc": "Generates a sequential id. ...",
846         "static": true,
847         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
848         "private": false,
849         "params": [
850           {
851             "type": "Ext.data.Model",
852             "optional": false,
853             "doc": "<p>The record being created.  The record does not exist, it's a <a href=\"#/api/Ext.grid.property.Property-property-phantom\" rel=\"Ext.grid.property.Property-property-phantom\" class=\"docClass\">phantom</a>.</p>\n",
854             "name": "rec"
855           }
856         ],
857         "name": "id",
858         "owner": "Ext.data.Model",
859         "doc": "<p>Generates a sequential id. This method is typically called when a record is <a href=\"#/api/Ext.grid.property.Property-method-create\" rel=\"Ext.grid.property.Property-method-create\" class=\"docClass\">create</a>d\nand no id has been specified. The id will automatically be assigned\nto the record. The returned id takes the form:\n<tt>&#123;PREFIX}-&#123;AUTO_ID}</tt>.<div class=\"mdetail-params\"><ul>\n<li><b><tt>PREFIX</tt></b> : String<p class=\"sub-desc\"><tt>Ext.data.Model.PREFIX</tt>\n(defaults to <tt>'ext-record'</tt>)</p></li>\n<li><b><tt>AUTO_ID</tt></b> : String<p class=\"sub-desc\"><tt>Ext.data.Model.AUTO_ID</tt>\n(defaults to <tt>1</tt> initially)</p></li>\n</ul></div></p>\n",
860         "linenr": 468,
861         "return": {
862           "type": "String",
863           "doc": "<p>auto-generated string id, <tt>\"ext-record-i++'</tt>;</p>\n"
864         },
865         "html_filename": "Model.html"
866       },
867       {
868         "deprecated": null,
869         "alias": null,
870         "protected": false,
871         "tagname": "method",
872         "href": "Base3.html#Ext-Base-method-implement",
873         "shortDoc": "Add methods / properties to the prototype of this class. ...",
874         "static": true,
875         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
876         "private": false,
877         "params": [
878           {
879             "type": "Object",
880             "optional": false,
881             "doc": "\n",
882             "name": "members"
883           }
884         ],
885         "name": "implement",
886         "owner": "Ext.Base",
887         "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",
888         "linenr": 415,
889         "return": {
890           "type": "void",
891           "doc": "\n"
892         },
893         "html_filename": "Base3.html"
894       },
895       {
896         "deprecated": null,
897         "alias": null,
898         "protected": true,
899         "tagname": "method",
900         "href": "Base3.html#Ext-Base-method-initConfig",
901         "shortDoc": "Initialize configuration for this class. ...",
902         "static": false,
903         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
904         "private": false,
905         "params": [
906           {
907             "type": "Object",
908             "optional": false,
909             "doc": "\n",
910             "name": "config"
911           }
912         ],
913         "name": "initConfig",
914         "owner": "Ext.Base",
915         "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",
916         "linenr": 63,
917         "return": {
918           "type": "Object",
919           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
920         },
921         "html_filename": "Base3.html"
922       },
923       {
924         "deprecated": null,
925         "alias": null,
926         "protected": false,
927         "tagname": "method",
928         "href": "Model.html#Ext-data-Model-method-isModified",
929         "shortDoc": "Returns true if the passed field name has been modified\nsince the load or last commit. ...",
930         "static": false,
931         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
932         "private": false,
933         "params": [
934           {
935             "type": "String",
936             "optional": false,
937             "doc": "<p><a href=\"#/api/Ext.data.Field-cfg-name\" rel=\"Ext.data.Field-cfg-name\" class=\"docClass\">Ext.data.Field.name</a></p>\n",
938             "name": "fieldName"
939           }
940         ],
941         "name": "isModified",
942         "owner": "Ext.data.Model",
943         "doc": "<p>Returns <tt>true</tt> if the passed field name has been <code><a href=\"#/api/Ext.grid.property.Property-property-modified\" rel=\"Ext.grid.property.Property-property-modified\" class=\"docClass\">modified</a></code>\nsince the load or last commit.</p>\n",
944         "linenr": 793,
945         "return": {
946           "type": "Boolean",
947           "doc": "\n"
948         },
949         "html_filename": "Model.html"
950       },
951       {
952         "deprecated": null,
953         "alias": null,
954         "protected": false,
955         "tagname": "method",
956         "href": "Model.html#Ext-data-Model-method-isValid",
957         "shortDoc": "Checks if the model is valid. ...",
958         "static": false,
959         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
960         "private": false,
961         "params": [
962
963         ],
964         "name": "isValid",
965         "owner": "Ext.data.Model",
966         "doc": "<p>Checks if the model is valid. See <a href=\"#/api/Ext.grid.property.Property-method-validate\" rel=\"Ext.grid.property.Property-method-validate\" class=\"docClass\">validate</a>.</p>\n",
967         "linenr": 964,
968         "return": {
969           "type": "Boolean",
970           "doc": "<p>True if the model is valid.</p>\n"
971         },
972         "html_filename": "Model.html"
973       },
974       {
975         "deprecated": null,
976         "alias": null,
977         "protected": false,
978         "tagname": "method",
979         "href": "Model.html#Ext-data-Model-method-join",
980         "shortDoc": "Tells this model instance that it has been added to a store ...",
981         "static": false,
982         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
983         "private": false,
984         "params": [
985           {
986             "type": "Ext.data.Store",
987             "optional": false,
988             "doc": "<p>The store that the model has been added to</p>\n",
989             "name": "store"
990           }
991         ],
992         "name": "join",
993         "owner": "Ext.data.Model",
994         "doc": "<p>Tells this model instance that it has been added to a store</p>\n",
995         "linenr": 1064,
996         "return": {
997           "type": "void",
998           "doc": "\n"
999         },
1000         "html_filename": "Model.html"
1001       },
1002       {
1003         "deprecated": null,
1004         "alias": null,
1005         "protected": false,
1006         "tagname": "method",
1007         "href": "Model.html#Ext-data-Model-method-load",
1008         "shortDoc": "Static. ...",
1009         "static": true,
1010         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1011         "private": false,
1012         "params": [
1013           {
1014             "type": "Number",
1015             "optional": false,
1016             "doc": "<p>The id of the model to load</p>\n",
1017             "name": "id"
1018           },
1019           {
1020             "type": "Object",
1021             "optional": false,
1022             "doc": "<p>Optional config object containing success, failure and callback functions, plus optional scope</p>\n",
1023             "name": "config"
1024           }
1025         ],
1026         "name": "load",
1027         "owner": "Ext.data.Model",
1028         "doc": "<p><b>Static</b>. Asynchronously loads a model instance by id. Sample usage:</p>\n\n<pre><code>    MyApp.User = Ext.define('User', {\n        extend: 'Ext.data.Model',\n        fields: [\n            {name: 'id', type: 'int'},\n            {name: 'name', type: 'string'}\n        ]\n    });\n\n    MyApp.User.load(10, {\n        scope: this,\n        failure: function(record, operation) {\n            //do something if the load failed\n        },\n        success: function(record, operation) {\n            //do something if the load succeeded\n        },\n        callback: function(record, operation) {\n            //do something whether the load succeeded or failed\n        }\n    });\n    </code></pre>\n\n",
1029         "linenr": 405,
1030         "return": {
1031           "type": "void",
1032           "doc": "\n"
1033         },
1034         "html_filename": "Model.html"
1035       },
1036       {
1037         "deprecated": null,
1038         "alias": {
1039           "tagname": "alias",
1040           "cls": "Ext.util.Observable",
1041           "doc": null,
1042           "owner": "addManagedListener"
1043         },
1044         "protected": false,
1045         "tagname": "method",
1046         "href": "Observable.html#Ext-util-Observable-method-mon",
1047         "shortDoc": "Shorthand for addManagedListener. ...",
1048         "static": false,
1049         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1050         "private": false,
1051         "params": [
1052           {
1053             "type": "Observable/Element",
1054             "optional": false,
1055             "doc": "<p>The item to which to add a listener/listeners.</p>\n",
1056             "name": "item"
1057           },
1058           {
1059             "type": "Object/String",
1060             "optional": false,
1061             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1062             "name": "ename"
1063           },
1064           {
1065             "type": "Function",
1066             "optional": true,
1067             "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1068             "name": "fn"
1069           },
1070           {
1071             "type": "Object",
1072             "optional": true,
1073             "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",
1074             "name": "scope"
1075           },
1076           {
1077             "type": "Object",
1078             "optional": true,
1079             "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",
1080             "name": "opt"
1081           }
1082         ],
1083         "name": "mon",
1084         "owner": "Ext.util.Observable",
1085         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.property.Property-method-addManagedListener\" rel=\"Ext.grid.property.Property-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",
1086         "linenr": 681,
1087         "return": {
1088           "type": "void",
1089           "doc": "\n"
1090         },
1091         "html_filename": "Observable.html"
1092       },
1093       {
1094         "deprecated": null,
1095         "alias": {
1096           "tagname": "alias",
1097           "cls": "Ext.util.Observable",
1098           "doc": null,
1099           "owner": "removeManagedListener"
1100         },
1101         "protected": false,
1102         "tagname": "method",
1103         "href": "Observable.html#Ext-util-Observable-method-mun",
1104         "shortDoc": "Shorthand for removeManagedListener. ...",
1105         "static": false,
1106         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1107         "private": false,
1108         "params": [
1109           {
1110             "type": "Observable|Element",
1111             "optional": false,
1112             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1113             "name": "item"
1114           },
1115           {
1116             "type": "Object|String",
1117             "optional": false,
1118             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1119             "name": "ename"
1120           },
1121           {
1122             "type": "Function",
1123             "optional": false,
1124             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1125             "name": "fn"
1126           },
1127           {
1128             "type": "Object",
1129             "optional": false,
1130             "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",
1131             "name": "scope"
1132           }
1133         ],
1134         "name": "mun",
1135         "owner": "Ext.util.Observable",
1136         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.property.Property-method-removeManagedListener\" rel=\"Ext.grid.property.Property-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.grid.property.Property-method-mon\" rel=\"Ext.grid.property.Property-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1137         "linenr": 687,
1138         "return": {
1139           "type": "void",
1140           "doc": "\n"
1141         },
1142         "html_filename": "Observable.html"
1143       },
1144       {
1145         "deprecated": null,
1146         "alias": null,
1147         "protected": false,
1148         "tagname": "method",
1149         "href": "Observable.html#Ext-util-Observable-method-observe",
1150         "shortDoc": "Sets observability on the passed class constructor. ...",
1151         "static": true,
1152         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1153         "private": false,
1154         "params": [
1155           {
1156             "type": "Function",
1157             "optional": false,
1158             "doc": "<p>The class constructor to make observable.</p>\n",
1159             "name": "c"
1160           },
1161           {
1162             "type": "Object",
1163             "optional": false,
1164             "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.grid.property.Property-method-addListener\" rel=\"Ext.grid.property.Property-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
1165             "name": "listeners"
1166           }
1167         ],
1168         "name": "observe",
1169         "owner": "Ext.util.Observable",
1170         "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",
1171         "linenr": 69,
1172         "return": {
1173           "type": "void",
1174           "doc": "\n"
1175         },
1176         "html_filename": "Observable.html"
1177       },
1178       {
1179         "deprecated": null,
1180         "alias": {
1181           "tagname": "alias",
1182           "cls": "Ext.util.Observable",
1183           "doc": null,
1184           "owner": "addListener"
1185         },
1186         "protected": false,
1187         "tagname": "method",
1188         "href": "Observable.html#Ext-util-Observable-method-on",
1189         "shortDoc": "Shorthand for addListener. ...",
1190         "static": false,
1191         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1192         "private": false,
1193         "params": [
1194           {
1195             "type": "String",
1196             "optional": false,
1197             "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
1198             "name": "eventName"
1199           },
1200           {
1201             "type": "Function",
1202             "optional": false,
1203             "doc": "<p>The method the event invokes.  Will be called with arguments given to\n<a href=\"#/api/Ext.grid.property.Property-method-fireEvent\" rel=\"Ext.grid.property.Property-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
1204             "name": "handler"
1205           },
1206           {
1207             "type": "Object",
1208             "optional": true,
1209             "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",
1210             "name": "scope"
1211           },
1212           {
1213             "type": "Object",
1214             "optional": true,
1215             "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",
1216             "name": "options"
1217           }
1218         ],
1219         "name": "on",
1220         "owner": "Ext.util.Observable",
1221         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.property.Property-method-addListener\" rel=\"Ext.grid.property.Property-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
1222         "linenr": 669,
1223         "return": {
1224           "type": "void",
1225           "doc": "\n"
1226         },
1227         "html_filename": "Observable.html"
1228       },
1229       {
1230         "deprecated": null,
1231         "alias": null,
1232         "protected": false,
1233         "tagname": "method",
1234         "href": "Base3.html#Ext-Base-method-override",
1235         "shortDoc": "Override prototype members of this class. ...",
1236         "static": true,
1237         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1238         "private": false,
1239         "params": [
1240           {
1241             "type": "Object",
1242             "optional": false,
1243             "doc": "\n",
1244             "name": "members"
1245           }
1246         ],
1247         "name": "override",
1248         "owner": "Ext.Base",
1249         "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",
1250         "linenr": 518,
1251         "return": {
1252           "type": "Ext.Base",
1253           "doc": "<p>this</p>\n"
1254         },
1255         "html_filename": "Base3.html"
1256       },
1257       {
1258         "deprecated": null,
1259         "alias": null,
1260         "protected": false,
1261         "tagname": "method",
1262         "href": "Model.html#Ext-data-Model-method-reject",
1263         "shortDoc": "Usually called by the Ext.data.Store to which this model instance has been joined. ...",
1264         "static": false,
1265         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1266         "private": false,
1267         "params": [
1268           {
1269             "type": "Boolean",
1270             "optional": true,
1271             "doc": "<p>(optional) True to skip notification of the owning\nstore of the change (defaults to false)</p>\n",
1272             "name": "silent"
1273           }
1274         ],
1275         "name": "reject",
1276         "owner": "Ext.data.Model",
1277         "doc": "<p>Usually called by the <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a> to which this model instance has been <a href=\"#/api/Ext.grid.property.Property-method-join\" rel=\"Ext.grid.property.Property-method-join\" class=\"docClass\">joined</a>.\nRejects all changes made to the model instance since either creation, or the last commit operation.\nModified fields are reverted to their original values.</p>\n\n<p>Developers should subscribe to the <a href=\"#/api/Ext.data.Store-event-update\" rel=\"Ext.data.Store-event-update\" class=\"docClass\">Ext.data.Store.update</a> event\nto have their code notified of reject operations.</p>\n\n",
1278         "linenr": 835,
1279         "return": {
1280           "type": "void",
1281           "doc": "\n"
1282         },
1283         "html_filename": "Model.html"
1284       },
1285       {
1286         "deprecated": null,
1287         "alias": null,
1288         "protected": false,
1289         "tagname": "method",
1290         "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1291         "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
1292         "static": false,
1293         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1294         "private": false,
1295         "params": [
1296           {
1297             "type": "Object",
1298             "optional": false,
1299             "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1300             "name": "origin"
1301           },
1302           {
1303             "type": "[String]",
1304             "optional": false,
1305             "doc": "<p>Array of event names to relay.</p>\n",
1306             "name": "events"
1307           },
1308           {
1309             "type": "Object",
1310             "optional": false,
1311             "doc": "\n",
1312             "name": "prefix"
1313           }
1314         ],
1315         "name": "relayEvents",
1316         "owner": "Ext.util.Observable",
1317         "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
1318         "linenr": 573,
1319         "return": {
1320           "type": "void",
1321           "doc": "\n"
1322         },
1323         "html_filename": "Observable.html"
1324       },
1325       {
1326         "deprecated": null,
1327         "alias": null,
1328         "protected": false,
1329         "tagname": "method",
1330         "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1331         "shortDoc": "Removes all added captures from the Observable. ...",
1332         "static": true,
1333         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1334         "private": false,
1335         "params": [
1336           {
1337             "type": "Observable",
1338             "optional": false,
1339             "doc": "<p>The Observable to release</p>\n",
1340             "name": "o"
1341           }
1342         ],
1343         "name": "releaseCapture",
1344         "owner": "Ext.util.Observable",
1345         "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
1346         "linenr": 44,
1347         "return": {
1348           "type": "void",
1349           "doc": "\n"
1350         },
1351         "html_filename": "Observable.html"
1352       },
1353       {
1354         "deprecated": null,
1355         "alias": null,
1356         "protected": false,
1357         "tagname": "method",
1358         "href": "Observable.html#Ext-util-Observable-method-removeListener",
1359         "shortDoc": "Removes an event handler. ...",
1360         "static": false,
1361         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1362         "private": false,
1363         "params": [
1364           {
1365             "type": "String",
1366             "optional": false,
1367             "doc": "<p>The type of event the handler was associated with.</p>\n",
1368             "name": "eventName"
1369           },
1370           {
1371             "type": "Function",
1372             "optional": false,
1373             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.grid.property.Property-method-addListener\" rel=\"Ext.grid.property.Property-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1374             "name": "handler"
1375           },
1376           {
1377             "type": "Object",
1378             "optional": true,
1379             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1380             "name": "scope"
1381           }
1382         ],
1383         "name": "removeListener",
1384         "owner": "Ext.util.Observable",
1385         "doc": "<p>Removes an event handler.</p>\n",
1386         "linenr": 392,
1387         "return": {
1388           "type": "void",
1389           "doc": "\n"
1390         },
1391         "html_filename": "Observable.html"
1392       },
1393       {
1394         "deprecated": null,
1395         "alias": null,
1396         "protected": false,
1397         "tagname": "method",
1398         "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1399         "shortDoc": "Removes listeners that were added by the mon method. ...",
1400         "static": false,
1401         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1402         "private": false,
1403         "params": [
1404           {
1405             "type": "Observable|Element",
1406             "optional": false,
1407             "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1408             "name": "item"
1409           },
1410           {
1411             "type": "Object|String",
1412             "optional": false,
1413             "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1414             "name": "ename"
1415           },
1416           {
1417             "type": "Function",
1418             "optional": false,
1419             "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1420             "name": "fn"
1421           },
1422           {
1423             "type": "Object",
1424             "optional": false,
1425             "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",
1426             "name": "scope"
1427           }
1428         ],
1429         "name": "removeManagedListener",
1430         "owner": "Ext.util.Observable",
1431         "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.grid.property.Property-method-mon\" rel=\"Ext.grid.property.Property-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1432         "linenr": 197,
1433         "return": {
1434           "type": "void",
1435           "doc": "\n"
1436         },
1437         "html_filename": "Observable.html"
1438       },
1439       {
1440         "deprecated": null,
1441         "alias": null,
1442         "protected": false,
1443         "tagname": "method",
1444         "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1445         "shortDoc": "Resumes firing events (see suspendEvents). ...",
1446         "static": false,
1447         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1448         "private": false,
1449         "params": [
1450
1451         ],
1452         "name": "resumeEvents",
1453         "owner": "Ext.util.Observable",
1454         "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.grid.property.Property-method-suspendEvents\" rel=\"Ext.grid.property.Property-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",
1455         "linenr": 554,
1456         "return": {
1457           "type": "void",
1458           "doc": "\n"
1459         },
1460         "html_filename": "Observable.html"
1461       },
1462       {
1463         "deprecated": null,
1464         "alias": null,
1465         "protected": false,
1466         "tagname": "method",
1467         "href": "Model.html#Ext-data-Model-method-save",
1468         "shortDoc": "Saves the model instance using the configured proxy ...",
1469         "static": false,
1470         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1471         "private": false,
1472         "params": [
1473           {
1474             "type": "Object",
1475             "optional": false,
1476             "doc": "<p>Options to pass to the proxy</p>\n",
1477             "name": "options"
1478           }
1479         ],
1480         "name": "save",
1481         "owner": "Ext.data.Model",
1482         "doc": "<p>Saves the model instance using the configured proxy</p>\n",
1483         "linenr": 972,
1484         "return": {
1485           "type": "Ext.data.Model",
1486           "doc": "<p>The Model instance</p>\n"
1487         },
1488         "html_filename": "Model.html"
1489       },
1490       {
1491         "deprecated": null,
1492         "alias": null,
1493         "protected": false,
1494         "tagname": "method",
1495         "href": "Model.html#Ext-data-Model-method-set",
1496         "shortDoc": "Sets the given field to the given value, marks the instance as dirty ...",
1497         "static": false,
1498         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1499         "private": false,
1500         "params": [
1501           {
1502             "type": "String|Object",
1503             "optional": false,
1504             "doc": "<p>The field to set, or an object containing key/value pairs</p>\n",
1505             "name": "fieldName"
1506           },
1507           {
1508             "type": "Mixed",
1509             "optional": false,
1510             "doc": "<p>The value to set</p>\n",
1511             "name": "value"
1512           }
1513         ],
1514         "name": "set",
1515         "owner": "Ext.data.Model",
1516         "doc": "<p>Sets the given field to the given value, marks the instance as dirty</p>\n",
1517         "linenr": 634,
1518         "return": {
1519           "type": "void",
1520           "doc": "\n"
1521         },
1522         "html_filename": "Model.html"
1523       },
1524       {
1525         "deprecated": null,
1526         "alias": null,
1527         "protected": false,
1528         "tagname": "method",
1529         "href": "Model.html#Ext-data-Model-method-setDirty",
1530         "shortDoc": "Marks this Record as dirty. ...",
1531         "static": false,
1532         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1533         "private": false,
1534         "params": [
1535
1536         ],
1537         "name": "setDirty",
1538         "owner": "Ext.data.Model",
1539         "doc": "<p>Marks this <b>Record</b> as <code><a href=\"#/api/Ext.grid.property.Property-property-dirty\" rel=\"Ext.grid.property.Property-property-dirty\" class=\"docClass\">dirty</a></code>.  This method\nis used interally when adding <code><a href=\"#/api/Ext.grid.property.Property-property-phantom\" rel=\"Ext.grid.property.Property-property-phantom\" class=\"docClass\">phantom</a></code> records to a\nwriter enabled store.</p>\n\n\n<br><p>Marking a record <code><a href=\"#/api/Ext.grid.property.Property-property-dirty\" rel=\"Ext.grid.property.Property-property-dirty\" class=\"docClass\">dirty</a></code> causes the phantom to\n\n\n<p>be returned by Ext.data.Store.getModifiedRecords where it will\nhave a create action composed for it during store save\noperations.</p></p>\n",
1540         "linenr": 803,
1541         "return": {
1542           "type": "void",
1543           "doc": "\n"
1544         },
1545         "html_filename": "Model.html"
1546       },
1547       {
1548         "deprecated": null,
1549         "alias": null,
1550         "protected": false,
1551         "tagname": "method",
1552         "href": "Model.html#Ext-data-Model-method-setId",
1553         "shortDoc": "Sets the model instance's id field to the given id ...",
1554         "static": false,
1555         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1556         "private": false,
1557         "params": [
1558           {
1559             "type": "Number",
1560             "optional": false,
1561             "doc": "<p>The new id</p>\n",
1562             "name": "id"
1563           }
1564         ],
1565         "name": "setId",
1566         "owner": "Ext.data.Model",
1567         "doc": "<p>Sets the model instance's id field to the given id</p>\n",
1568         "linenr": 1056,
1569         "return": {
1570           "type": "void",
1571           "doc": "\n"
1572         },
1573         "html_filename": "Model.html"
1574       },
1575       {
1576         "deprecated": null,
1577         "alias": null,
1578         "protected": false,
1579         "tagname": "method",
1580         "href": "Model.html#Ext-data-Model-method-setProxy",
1581         "shortDoc": "Sets the Proxy to use for this model. ...",
1582         "static": true,
1583         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1584         "private": false,
1585         "params": [
1586           {
1587             "type": "String/Object/Ext.data.proxy.Proxy",
1588             "optional": false,
1589             "doc": "<p>The proxy</p>\n",
1590             "name": "proxy"
1591           }
1592         ],
1593         "name": "setProxy",
1594         "owner": "Ext.data.Model",
1595         "doc": "<p>Sets the Proxy to use for this model. Accepts any options that can be accepted by <a href=\"#/api/Ext-method-createByAlias\" rel=\"Ext-method-createByAlias\" class=\"docClass\">Ext.createByAlias</a></p>\n",
1596         "linenr": 903,
1597         "return": {
1598           "type": "void",
1599           "doc": "\n"
1600         },
1601         "html_filename": "Model.html"
1602       },
1603       {
1604         "deprecated": null,
1605         "alias": null,
1606         "protected": true,
1607         "tagname": "method",
1608         "href": "Base3.html#Ext-Base-method-statics",
1609         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1610         "static": false,
1611         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1612         "private": false,
1613         "params": [
1614
1615         ],
1616         "name": "statics",
1617         "owner": "Ext.Base",
1618         "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",
1619         "linenr": 199,
1620         "return": {
1621           "type": "Class",
1622           "doc": "\n"
1623         },
1624         "html_filename": "Base3.html"
1625       },
1626       {
1627         "deprecated": null,
1628         "alias": null,
1629         "protected": false,
1630         "tagname": "method",
1631         "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1632         "shortDoc": "Suspends the firing of all events. ...",
1633         "static": false,
1634         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1635         "private": false,
1636         "params": [
1637           {
1638             "type": "Boolean",
1639             "optional": false,
1640             "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.grid.property.Property-method-resumeEvents\" rel=\"Ext.grid.property.Property-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1641             "name": "queueSuspended"
1642           }
1643         ],
1644         "name": "suspendEvents",
1645         "owner": "Ext.util.Observable",
1646         "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.grid.property.Property-method-resumeEvents\" rel=\"Ext.grid.property.Property-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1647         "linenr": 541,
1648         "return": {
1649           "type": "void",
1650           "doc": "\n"
1651         },
1652         "html_filename": "Observable.html"
1653       },
1654       {
1655         "deprecated": null,
1656         "alias": {
1657           "tagname": "alias",
1658           "cls": "Ext.util.Observable",
1659           "doc": null,
1660           "owner": "removeListener"
1661         },
1662         "protected": false,
1663         "tagname": "method",
1664         "href": "Observable.html#Ext-util-Observable-method-un",
1665         "shortDoc": "Shorthand for removeListener. ...",
1666         "static": false,
1667         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1668         "private": false,
1669         "params": [
1670           {
1671             "type": "String",
1672             "optional": false,
1673             "doc": "<p>The type of event the handler was associated with.</p>\n",
1674             "name": "eventName"
1675           },
1676           {
1677             "type": "Function",
1678             "optional": false,
1679             "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.grid.property.Property-method-addListener\" rel=\"Ext.grid.property.Property-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1680             "name": "handler"
1681           },
1682           {
1683             "type": "Object",
1684             "optional": true,
1685             "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1686             "name": "scope"
1687           }
1688         ],
1689         "name": "un",
1690         "owner": "Ext.util.Observable",
1691         "doc": "<p>Shorthand for <a href=\"#/api/Ext.grid.property.Property-method-removeListener\" rel=\"Ext.grid.property.Property-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1692         "linenr": 675,
1693         "return": {
1694           "type": "void",
1695           "doc": "\n"
1696         },
1697         "html_filename": "Observable.html"
1698       },
1699       {
1700         "deprecated": null,
1701         "alias": null,
1702         "protected": false,
1703         "tagname": "method",
1704         "href": "Model.html#Ext-data-Model-method-unjoin",
1705         "shortDoc": "Tells this model instance that it has been removed from the store ...",
1706         "static": false,
1707         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1708         "private": false,
1709         "params": [
1710
1711         ],
1712         "name": "unjoin",
1713         "owner": "Ext.data.Model",
1714         "doc": "<p>Tells this model instance that it has been removed from the store</p>\n",
1715         "linenr": 1077,
1716         "return": {
1717           "type": "void",
1718           "doc": "\n"
1719         },
1720         "html_filename": "Model.html"
1721       },
1722       {
1723         "deprecated": null,
1724         "alias": null,
1725         "protected": false,
1726         "tagname": "method",
1727         "href": "Model.html#Ext-data-Model-method-validate",
1728         "shortDoc": "Validates the current data against all of its configured validations and returns an\nErrors object ...",
1729         "static": false,
1730         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1731         "private": false,
1732         "params": [
1733
1734         ],
1735         "name": "validate",
1736         "owner": "Ext.data.Model",
1737         "doc": "<p>Validates the current data against all of its configured validations and returns an\n<a href=\"#/api/Ext.data.Errors\" rel=\"Ext.data.Errors\" class=\"docClass\">Errors</a> object</p>\n",
1738         "linenr": 932,
1739         "return": {
1740           "type": "Ext.data.Errors",
1741           "doc": "<p>The errors object</p>\n"
1742         },
1743         "html_filename": "Model.html"
1744       }
1745     ],
1746     "property": [
1747       {
1748         "type": "String",
1749         "deprecated": null,
1750         "alias": null,
1751         "protected": false,
1752         "tagname": "property",
1753         "href": "Model.html#Ext-data-Model-property-defaultProxyType",
1754         "shortDoc": "The string type of the default Model Proxy. ...",
1755         "static": false,
1756         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1757         "private": false,
1758         "name": "defaultProxyType",
1759         "owner": "Ext.data.Model",
1760         "doc": "<p>The string type of the default Model Proxy. Defaults to 'ajax'</p>\n",
1761         "linenr": 526,
1762         "html_filename": "Model.html"
1763       },
1764       {
1765         "type": "Boolean",
1766         "deprecated": null,
1767         "alias": null,
1768         "protected": false,
1769         "tagname": "property",
1770         "href": "Model.html#Ext-data-Model-property-dirty",
1771         "static": false,
1772         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1773         "private": false,
1774         "name": "dirty",
1775         "owner": "Ext.data.Model",
1776         "doc": "<p>Readonly flag - true if this Record has been modified.</p>\n",
1777         "linenr": 497,
1778         "html_filename": "Model.html"
1779       },
1780       {
1781         "type": "Boolean",
1782         "deprecated": null,
1783         "alias": null,
1784         "protected": false,
1785         "tagname": "property",
1786         "href": "Model.html#Ext-data-Model-property-editing",
1787         "shortDoc": "Internal flag used to track whether or not the model instance is currently being edited. ...",
1788         "static": false,
1789         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1790         "private": false,
1791         "name": "editing",
1792         "owner": "Ext.data.Model",
1793         "doc": "<p>Internal flag used to track whether or not the model instance is currently being edited. Read-only</p>\n",
1794         "linenr": 490,
1795         "html_filename": "Model.html"
1796       },
1797       {
1798         "type": "Array",
1799         "deprecated": null,
1800         "alias": null,
1801         "protected": false,
1802         "tagname": "property",
1803         "href": "Model.html#Ext-data-Model-property-fields",
1804         "static": false,
1805         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1806         "private": false,
1807         "name": "fields",
1808         "owner": "Ext.data.Model",
1809         "doc": "<p>An array of the fields defined on this model</p>\n",
1810         "linenr": 533,
1811         "html_filename": "Model.html"
1812       },
1813       {
1814         "type": "Object",
1815         "deprecated": null,
1816         "alias": null,
1817         "protected": false,
1818         "tagname": "property",
1819         "href": "Model.html#Ext-data-Model-property-modified",
1820         "static": false,
1821         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1822         "private": false,
1823         "name": "modified",
1824         "owner": "Ext.data.Model",
1825         "doc": "<p>Key: value pairs of all fields whose values have changed</p>\n",
1826         "linenr": 571,
1827         "html_filename": "Model.html"
1828       },
1829       {
1830         "type": "Boolean",
1831         "deprecated": null,
1832         "alias": null,
1833         "protected": false,
1834         "tagname": "property",
1835         "href": "Model.html#Ext-data-Model-property-phantom",
1836         "shortDoc": "true when the record does not yet exist in a server-side database (see\nsetDirty). ...",
1837         "static": false,
1838         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1839         "private": false,
1840         "name": "phantom",
1841         "owner": "Ext.data.Model",
1842         "doc": "<p><tt>true</tt> when the record does not yet exist in a server-side database (see\n<a href=\"#/api/Ext.grid.property.Property-method-setDirty\" rel=\"Ext.grid.property.Property-method-setDirty\" class=\"docClass\">setDirty</a>).  Any record which has a real database pk set as its id property\nis NOT a phantom -- it's real.</p>\n",
1843         "linenr": 512,
1844         "html_filename": "Model.html"
1845       },
1846       {
1847         "type": "Object",
1848         "deprecated": null,
1849         "alias": null,
1850         "protected": false,
1851         "tagname": "property",
1852         "href": "Model.html#Ext-data-Model-property-raw",
1853         "static": false,
1854         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1855         "private": false,
1856         "name": "raw",
1857         "owner": "Ext.data.Model",
1858         "doc": "<p>The raw data used to create this model if created via a reader.</p>\n",
1859         "linenr": 560,
1860         "html_filename": "Model.html"
1861       },
1862       {
1863         "type": "Class",
1864         "deprecated": null,
1865         "alias": null,
1866         "protected": true,
1867         "tagname": "property",
1868         "href": "Base3.html#Ext-Base-property-self",
1869         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1870         "static": false,
1871         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1872         "private": false,
1873         "name": "self",
1874         "owner": "Ext.Base",
1875         "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",
1876         "linenr": 18,
1877         "html_filename": "Base3.html"
1878       },
1879       {
1880         "type": "Ext.data.Store",
1881         "deprecated": null,
1882         "alias": null,
1883         "protected": false,
1884         "tagname": "property",
1885         "href": "Model.html#Ext-data-Model-property-store",
1886         "static": false,
1887         "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/Model.js",
1888         "private": false,
1889         "name": "store",
1890         "owner": "Ext.data.Model",
1891         "doc": "<p>The <a href=\"#/api/Ext.data.Store\" rel=\"Ext.data.Store\" class=\"docClass\">Ext.data.Store</a> to which this Record belongs.</p>\n",
1892         "linenr": 1069,
1893         "html_filename": "Model.html"
1894       }
1895     ],
1896     "cssVar": [
1897
1898     ],
1899     "cssMixin": [
1900
1901     ],
1902     "event": [
1903
1904     ]
1905   },
1906   "singleton": false,
1907   "alias": null,
1908   "superclasses": [
1909     "Ext.Base",
1910     "Ext.data.Model"
1911   ],
1912   "protected": false,
1913   "tagname": "class",
1914   "mixins": [
1915
1916   ],
1917   "href": "Property.html#Ext-grid-property-Property",
1918   "subclasses": [
1919
1920   ],
1921   "static": false,
1922   "author": null,
1923   "component": false,
1924   "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/grid/property/Property.js",
1925   "private": false,
1926   "alternateClassNames": [
1927     "Ext.PropGridProperty"
1928   ],
1929   "name": "Ext.grid.property.Property",
1930   "doc": "<p>A specific <a href=\"#/api/Ext.data.Model\" rel=\"Ext.data.Model\" class=\"docClass\">Ext.data.Model</a> type that represents a name/value pair and is made to work with the\n<a href=\"#/api/Ext.grid.property.Grid\" rel=\"Ext.grid.property.Grid\" class=\"docClass\">Ext.grid.property.Grid</a>.  Typically, Properties do not need to be created directly as they can be\ncreated implicitly by simply using the appropriate data configs either via the <a href=\"#/api/Ext.grid.property.Grid-cfg-source\" rel=\"Ext.grid.property.Grid-cfg-source\" class=\"docClass\">Ext.grid.property.Grid.source</a>\nconfig property or by calling <a href=\"#/api/Ext.grid.property.Grid-method-setSource\" rel=\"Ext.grid.property.Grid-method-setSource\" class=\"docClass\">Ext.grid.property.Grid.setSource</a>.  However, if the need arises, these records\ncan also be created explicitly as shown below.  Example usage:</p>\n\n<pre><code>var rec = new Ext.grid.property.Property({\n    name: 'birthday',\n    value: Ext.Date.parse('17/06/1962', 'd/m/Y')\n});\n// Add record to an already populated grid\ngrid.store.addSorted(rec);\n</code></pre>\n\n",
1931   "mixedInto": [
1932
1933   ],
1934   "linenr": 1,
1935   "xtypes": [
1936
1937   ],
1938   "html_filename": "Property.html",
1939   "extends": "Ext.data.Model"
1940 });