1 Ext.data.JsonP.Ext_direct_RemotingProvider({
15 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-cfg-actions",
16 "shortDoc": "Object literal defining the server side actions and methods. ...",
18 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
21 "owner": "Ext.direct.RemotingProvider",
22 "doc": "<p>Object literal defining the server side actions and methods. For example, if\nthe Provider is configured with:</p>\n\n<pre><code>\"actions\":{ // each property within the 'actions' object represents a server side Class \n \"TestAction\":[ // array of methods within each server side Class to be \n { // stubbed out on client\n \"name\":\"doEcho\", \n \"len\":1 \n },{\n \"name\":\"multiply\",// name of method\n \"len\":2 // The number of parameters that will be used to create an\n // array of data to send to the server side function.\n // Ensure the server sends back a Number, not a String. \n },{\n \"name\":\"doForm\",\n \"formHandler\":true, // direct the client to use specialized form handling method \n \"len\":1\n }]\n}\n</code></pre>\n\n\n<p>Note that a Store is not required, a server method can be called at any time.\nIn the following example a <b>client side</b> handler is used to call the\nserver side method \"multiply\" in the server-side \"TestAction\" Class:</p>\n\n\n<pre><code>TestAction.multiply(\n 2, 4, // pass two arguments to server, so specify len=2\n // callback function after the server is called\n // result: the result returned by the server\n // e: <a href=\"#/api/Ext.direct.RemotingEvent\" rel=\"Ext.direct.RemotingEvent\" class=\"docClass\">Ext.direct.RemotingEvent</a> object\n function(result, e){\n var t = e.getTransaction();\n var action = t.action; // server side Class called\n var method = t.method; // server side method called\n if(e.status){\n var answer = Ext.encode(result); // 8\n \n }else{\n var msg = e.message; // failure message\n }\n }\n);\n</code></pre>\n\n\n<p>In the example above, the server side \"multiply\" function will be passed two\narguments (2 and 4). The \"multiply\" method should return the value 8 which will be\navailable as the <tt>result</tt> in the example above.</p>\n",
24 "html_filename": "RemotingProvider.html"
27 "type": "Number/Boolean",
32 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-cfg-enableBuffer",
33 "shortDoc": "true or false to enable or disable combining of method\ncalls. ...",
35 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
37 "name": "enableBuffer",
38 "owner": "Ext.direct.RemotingProvider",
39 "doc": "<p><tt>true</tt> or <tt>false</tt> to enable or disable combining of method\ncalls. If a number is specified this is the amount of time in milliseconds\nto wait before sending a batched request (defaults to <tt>10</tt>).</p>\n\n\n<br><p>Calls which are received within the specified timeframe will be\n\n\n<p>concatenated together and sent in a single request, optimizing the\napplication by reducing the amount of round trips that have to be made\nto the server.</p></p>\n",
41 "html_filename": "RemotingProvider.html"
49 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-cfg-enableUrlEncode",
50 "shortDoc": "Specify which param will hold the arguments for the method. ...",
52 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
54 "name": "enableUrlEncode",
55 "owner": "Ext.direct.RemotingProvider",
56 "doc": "<p>Specify which param will hold the arguments for the method.\nDefaults to <tt>'data'</tt>.</p>\n",
58 "html_filename": "RemotingProvider.html"
66 "href": "Provider2.html#Ext-direct-Provider-cfg-id",
67 "shortDoc": "The unique id of the provider (defaults to an auto-assigned id). ...",
69 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
72 "owner": "Ext.direct.Provider",
73 "doc": "<p>The unique id of the provider (defaults to an <a href=\"#/api/Ext-method-id\" rel=\"Ext-method-id\" class=\"docClass\">auto-assigned id</a>).\nYou should assign an id if you need to be able to access the provider later and you do\nnot have an object reference available, for example:</p>\n\n<pre><code>Ext.direct.Manager.addProvider({\n type: 'polling',\n url: 'php/poll.php',\n id: 'poll-provider'\n}); \nvar p = <a href=\"#/api/Ext.direct.Manager\" rel=\"Ext.direct.Manager\" class=\"docClass\">Ext.direct.Manager</a>.<a href=\"#/api/Ext.direct.Manager-method-getProvider\" rel=\"Ext.direct.Manager-method-getProvider\" class=\"docClass\">getProvider</a>('poll-provider');\np.disconnect();\n</code></pre>\n\n",
75 "html_filename": "Provider2.html"
83 "href": "Observable.html#Ext-util-Observable-cfg-listeners",
84 "shortDoc": "A config object containing one or more event handlers to be added to this object during initialization. ...",
86 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
89 "owner": "Ext.util.Observable",
90 "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.direct.RemotingProvider-method-addListener\" rel=\"Ext.direct.RemotingProvider-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",
92 "html_filename": "Observable.html"
100 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-cfg-maxRetries",
101 "shortDoc": "Number of times to re-attempt delivery on failure of a call. ...",
103 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
105 "name": "maxRetries",
106 "owner": "Ext.direct.RemotingProvider",
107 "doc": "<p>Number of times to re-attempt delivery on failure of a call. Defaults to <tt>1</tt>.</p>\n",
109 "html_filename": "RemotingProvider.html"
112 "type": "String/Object",
117 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-cfg-namespace",
118 "shortDoc": "Namespace for the Remoting Provider (defaults to the browser global scope of window). ...",
120 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
123 "owner": "Ext.direct.RemotingProvider",
124 "doc": "<p>Namespace for the Remoting Provider (defaults to the browser global scope of <i>window</i>).\nExplicitly specify the namespace Object, or specify a String to have a\n<a href=\"#/api/Ext-method-namespace\" rel=\"Ext-method-namespace\" class=\"docClass\">namespace created</a> implicitly.</p>\n",
126 "html_filename": "RemotingProvider.html"
134 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-cfg-timeout",
135 "shortDoc": "The timeout to use for each request. ...",
137 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
140 "owner": "Ext.direct.RemotingProvider",
141 "doc": "<p>The timeout to use for each request. Defaults to <tt>undefined</tt>.</p>\n",
143 "html_filename": "RemotingProvider.html"
151 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-cfg-url",
152 "shortDoc": "Required. ...",
154 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
157 "owner": "Ext.direct.RemotingProvider",
158 "doc": "<p><b>Required</b>. The url to connect to the <a href=\"#/api/Ext.direct.Manager\" rel=\"Ext.direct.Manager\" class=\"docClass\">Ext.direct.Manager</a> server-side router.</p>\n",
160 "html_filename": "RemotingProvider.html"
169 "href": "Observable.html#Ext-util-Observable-method-addEvents",
170 "shortDoc": "Adds the specified events to the list of events which this Observable may fire. ...",
172 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
176 "type": "Object/String",
178 "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",
184 "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",
189 "owner": "Ext.util.Observable",
190 "doc": "<p>Adds the specified events to the list of events which this Observable may fire.</p>\n",
196 "html_filename": "Observable.html"
203 "href": "Observable.html#Ext-util-Observable-method-addListener",
204 "shortDoc": "Appends an event handler to this object. ...",
206 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
212 "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
218 "doc": "<p>The method the event invokes. Will be called with arguments given to\n<a href=\"#/api/Ext.direct.RemotingProvider-method-fireEvent\" rel=\"Ext.direct.RemotingProvider-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
224 "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",
230 "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",
234 "name": "addListener",
235 "owner": "Ext.util.Observable",
236 "doc": "<p>Appends an event handler to this object.</p>\n",
242 "html_filename": "Observable.html"
249 "href": "Observable.html#Ext-util-Observable-method-addManagedListener",
250 "shortDoc": "Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed. ...",
252 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
256 "type": "Observable/Element",
258 "doc": "<p>The item to which to add a listener/listeners.</p>\n",
262 "type": "Object/String",
264 "doc": "<p>The event name, or an object containing event name properties.</p>\n",
270 "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
276 "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",
282 "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",
286 "name": "addManagedListener",
287 "owner": "Ext.util.Observable",
288 "doc": "<p>Adds listeners to any Observable object (or Element) which are automatically removed when this Component is\ndestroyed.</p>\n",
294 "html_filename": "Observable.html"
301 "href": "Base3.html#Ext-Base-method-addStatics",
302 "shortDoc": "Add / override static properties of this class. ...",
304 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
314 "name": "addStatics",
316 "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",
320 "doc": "<p>this</p>\n"
322 "html_filename": "Base3.html"
329 "href": "Base3.html#Ext-Base-method-callOverridden",
330 "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n constructo...",
332 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
336 "type": "Array/Arguments",
338 "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
342 "name": "callOverridden",
344 "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",
348 "doc": "<p>Returns the result after calling the overridden method</p>\n"
350 "html_filename": "Base3.html"
357 "href": "Base3.html#Ext-Base-method-callParent",
358 "shortDoc": "Call the parent's overridden method. ...",
360 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
364 "type": "Array/Arguments",
366 "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",
370 "name": "callParent",
372 "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",
376 "doc": "<p>Returns the result from the superclass' method</p>\n"
378 "html_filename": "Base3.html"
385 "href": "Observable.html#Ext-util-Observable-method-capture",
386 "shortDoc": "Starts capture on the specified Observable. ...",
388 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
392 "type": "Observable",
394 "doc": "<p>The Observable to capture events from.</p>\n",
400 "doc": "<p>The function to call when an event is fired.</p>\n",
406 "doc": "<p>(optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to\nthe Observable firing the event.</p>\n",
411 "owner": "Ext.util.Observable",
412 "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",
418 "html_filename": "Observable.html"
425 "href": "Observable.html#Ext-util-Observable-method-clearListeners",
426 "shortDoc": "Removes all listeners for this object including the managed listeners ...",
428 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
433 "name": "clearListeners",
434 "owner": "Ext.util.Observable",
435 "doc": "<p>Removes all listeners for this object including the managed listeners</p>\n",
441 "html_filename": "Observable.html"
448 "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners",
449 "shortDoc": "Removes all managed listeners for this object. ...",
451 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
456 "name": "clearManagedListeners",
457 "owner": "Ext.util.Observable",
458 "doc": "<p>Removes all managed listeners for this object.</p>\n",
464 "html_filename": "Observable.html"
471 "href": "Provider2.html#Ext-direct-Provider-method-connect",
472 "shortDoc": "Abstract methods for subclasses to implement. ...",
474 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
480 "owner": "Ext.direct.Provider",
481 "doc": "<p>Abstract methods for subclasses to implement.</p>\n",
487 "html_filename": "Provider2.html"
494 "href": "Base3.html#Ext-Base-method-create",
495 "shortDoc": "Create a new instance of this Class. ...",
497 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
504 "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",
508 "doc": "<p>the created instance.</p>\n"
510 "html_filename": "Base3.html"
517 "href": "Base3.html#Ext-Base-method-createAlias",
518 "shortDoc": "Create aliases for existing prototype methods. ...",
520 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
524 "type": "String/Object",
526 "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",
530 "type": "String/Object",
532 "doc": "<p>The original method name</p>\n",
536 "name": "createAlias",
538 "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() -> test.method1()\n</code></pre>\n",
544 "html_filename": "Base3.html"
551 "href": "JsonProvider.html#Ext-direct-JsonProvider-method-createEvent",
552 "shortDoc": "Create an event from a response object ...",
554 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/JsonProvider.js",
560 "doc": "<p>The XHR response object</p>\n",
564 "name": "createEvent",
565 "owner": "Ext.direct.JsonProvider",
566 "doc": "<p>Create an event from a response object</p>\n",
569 "type": "Ext.direct.Event",
570 "doc": "<p>The event</p>\n"
572 "html_filename": "JsonProvider.html"
579 "href": "Provider2.html#Ext-direct-Provider-method-disconnect",
580 "shortDoc": "Abstract methods for subclasses to implement. ...",
582 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
587 "name": "disconnect",
588 "owner": "Ext.direct.Provider",
589 "doc": "<p>Abstract methods for subclasses to implement.</p>\n",
595 "html_filename": "Provider2.html"
602 "href": "Observable.html#Ext-util-Observable-method-enableBubble",
603 "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling this.getBubbleTarget() if\npresent. ...",
605 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
609 "type": "String/[String]",
611 "doc": "<p>The event name to bubble, or an Array of event names.</p>\n",
615 "name": "enableBubble",
616 "owner": "Ext.util.Observable",
617 "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",
623 "html_filename": "Observable.html"
630 "href": "Observable.html#Ext-util-Observable-method-fireEvent",
631 "shortDoc": "Fires the specified event with the passed parameters (minus the event name, plus the options object passed\nto addList...",
633 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
639 "doc": "<p>The name of the event to fire.</p>\n",
645 "doc": "<p>Variable number of parameters are passed to handlers.</p>\n",
650 "owner": "Ext.util.Observable",
651 "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.direct.RemotingProvider-method-addListener\" rel=\"Ext.direct.RemotingProvider-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.direct.RemotingProvider-method-enableBubble\" rel=\"Ext.direct.RemotingProvider-method-enableBubble\" class=\"docClass\">enableBubble</a>.</p>\n",
655 "doc": "<p>returns false if any of the handlers return false otherwise it returns true.</p>\n"
657 "html_filename": "Observable.html"
664 "href": "Base3.html#Ext-Base-method-getName",
665 "shortDoc": "Get the current class' name in string format. ...",
667 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
674 "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",
678 "doc": "<p>className</p>\n"
680 "html_filename": "Base3.html"
687 "href": "Observable.html#Ext-util-Observable-method-hasListener",
688 "shortDoc": "Checks to see if this object has any listeners for a specified event ...",
690 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
696 "doc": "<p>The name of the event to check for</p>\n",
700 "name": "hasListener",
701 "owner": "Ext.util.Observable",
702 "doc": "<p>Checks to see if this object has any listeners for a specified event</p>\n",
706 "doc": "<p>True if the event is being listened for, else false</p>\n"
708 "html_filename": "Observable.html"
715 "href": "Base3.html#Ext-Base-method-implement",
716 "shortDoc": "Add methods / properties to the prototype of this class. ...",
718 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
730 "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",
736 "html_filename": "Base3.html"
743 "href": "Base3.html#Ext-Base-method-initConfig",
744 "shortDoc": "Initialize configuration for this class. ...",
746 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
756 "name": "initConfig",
758 "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",
762 "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
764 "html_filename": "Base3.html"
771 "href": "Provider2.html#Ext-direct-Provider-method-isConnected",
772 "shortDoc": "Returns whether or not the server-side is currently connected. ...",
774 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
779 "name": "isConnected",
780 "owner": "Ext.direct.Provider",
781 "doc": "<p>Returns whether or not the server-side is currently connected.\nAbstract method for subclasses to implement.</p>\n",
787 "html_filename": "Provider2.html"
793 "cls": "Ext.util.Observable",
795 "owner": "addManagedListener"
799 "href": "Observable.html#Ext-util-Observable-method-mon",
800 "shortDoc": "Shorthand for addManagedListener. ...",
802 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
806 "type": "Observable/Element",
808 "doc": "<p>The item to which to add a listener/listeners.</p>\n",
812 "type": "Object/String",
814 "doc": "<p>The event name, or an object containing event name properties.</p>\n",
820 "doc": "<p>(optional) If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
826 "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",
832 "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",
837 "owner": "Ext.util.Observable",
838 "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.RemotingProvider-method-addManagedListener\" rel=\"Ext.direct.RemotingProvider-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",
844 "html_filename": "Observable.html"
850 "cls": "Ext.util.Observable",
852 "owner": "removeManagedListener"
856 "href": "Observable.html#Ext-util-Observable-method-mun",
857 "shortDoc": "Shorthand for removeManagedListener. ...",
859 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
863 "type": "Observable|Element",
865 "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
869 "type": "Object|String",
871 "doc": "<p>The event name, or an object containing event name properties.</p>\n",
877 "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
883 "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the scope (<code>this</code> reference)\nin which the handler function is executed.</p>\n",
888 "owner": "Ext.util.Observable",
889 "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.RemotingProvider-method-removeManagedListener\" rel=\"Ext.direct.RemotingProvider-method-removeManagedListener\" class=\"docClass\">removeManagedListener</a>.</p>\n\n<p>Removes listeners that were added by the <a href=\"#/api/Ext.direct.RemotingProvider-method-mon\" rel=\"Ext.direct.RemotingProvider-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
895 "html_filename": "Observable.html"
902 "href": "Observable.html#Ext-util-Observable-method-observe",
903 "shortDoc": "Sets observability on the passed class constructor. ...",
905 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
911 "doc": "<p>The class constructor to make observable.</p>\n",
917 "doc": "<p>An object containing a series of listeners to add. See <a href=\"#/api/Ext.direct.RemotingProvider-method-addListener\" rel=\"Ext.direct.RemotingProvider-method-addListener\" class=\"docClass\">addListener</a>.</p>\n",
922 "owner": "Ext.util.Observable",
923 "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",
929 "html_filename": "Observable.html"
935 "cls": "Ext.util.Observable",
937 "owner": "addListener"
941 "href": "Observable.html#Ext-util-Observable-method-on",
942 "shortDoc": "Shorthand for addListener. ...",
944 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
950 "doc": "<p>The name of the event to listen for. May also be an object who's property names are\nevent names.</p>\n",
956 "doc": "<p>The method the event invokes. Will be called with arguments given to\n<a href=\"#/api/Ext.direct.RemotingProvider-method-fireEvent\" rel=\"Ext.direct.RemotingProvider-method-fireEvent\" class=\"docClass\">fireEvent</a> plus the <code>options</code> parameter described below.</p>\n",
962 "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",
968 "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",
973 "owner": "Ext.util.Observable",
974 "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.RemotingProvider-method-addListener\" rel=\"Ext.direct.RemotingProvider-method-addListener\" class=\"docClass\">addListener</a>.</p>\n\n<p>Appends an event handler to this object.</p>\n",
980 "html_filename": "Observable.html"
987 "href": "Base3.html#Ext-Base-method-override",
988 "shortDoc": "Override prototype members of this class. ...",
990 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1001 "owner": "Ext.Base",
1002 "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",
1006 "doc": "<p>this</p>\n"
1008 "html_filename": "Base3.html"
1014 "tagname": "method",
1015 "href": "Observable.html#Ext-util-Observable-method-relayEvents",
1016 "shortDoc": "Relays selected events from the specified Observable as if the events were fired by this. ...",
1018 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1024 "doc": "<p>The Observable whose events this object is to relay.</p>\n",
1030 "doc": "<p>Array of event names to relay.</p>\n",
1040 "name": "relayEvents",
1041 "owner": "Ext.util.Observable",
1042 "doc": "<p>Relays selected events from the specified Observable as if the events were fired by <code>this</code>.</p>\n",
1048 "html_filename": "Observable.html"
1054 "tagname": "method",
1055 "href": "Observable.html#Ext-util-Observable-method-releaseCapture",
1056 "shortDoc": "Removes all added captures from the Observable. ...",
1058 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1062 "type": "Observable",
1064 "doc": "<p>The Observable to release</p>\n",
1068 "name": "releaseCapture",
1069 "owner": "Ext.util.Observable",
1070 "doc": "<p>Removes <strong>all</strong> added captures from the Observable.</p>\n",
1076 "html_filename": "Observable.html"
1082 "tagname": "method",
1083 "href": "Observable.html#Ext-util-Observable-method-removeListener",
1084 "shortDoc": "Removes an event handler. ...",
1086 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1092 "doc": "<p>The type of event the handler was associated with.</p>\n",
1098 "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.direct.RemotingProvider-method-addListener\" rel=\"Ext.direct.RemotingProvider-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1104 "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1108 "name": "removeListener",
1109 "owner": "Ext.util.Observable",
1110 "doc": "<p>Removes an event handler.</p>\n",
1116 "html_filename": "Observable.html"
1122 "tagname": "method",
1123 "href": "Observable.html#Ext-util-Observable-method-removeManagedListener",
1124 "shortDoc": "Removes listeners that were added by the mon method. ...",
1126 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1130 "type": "Observable|Element",
1132 "doc": "<p>The item from which to remove a listener/listeners.</p>\n",
1136 "type": "Object|String",
1138 "doc": "<p>The event name, or an object containing event name properties.</p>\n",
1144 "doc": "<p>Optional. If the <code>ename</code> parameter was an event name, this is the handler function.</p>\n",
1150 "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",
1154 "name": "removeManagedListener",
1155 "owner": "Ext.util.Observable",
1156 "doc": "<p>Removes listeners that were added by the <a href=\"#/api/Ext.direct.RemotingProvider-method-mon\" rel=\"Ext.direct.RemotingProvider-method-mon\" class=\"docClass\">mon</a> method.</p>\n",
1162 "html_filename": "Observable.html"
1168 "tagname": "method",
1169 "href": "Observable.html#Ext-util-Observable-method-resumeEvents",
1170 "shortDoc": "Resumes firing events (see suspendEvents). ...",
1172 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1177 "name": "resumeEvents",
1178 "owner": "Ext.util.Observable",
1179 "doc": "<p>Resumes firing events (see <a href=\"#/api/Ext.direct.RemotingProvider-method-suspendEvents\" rel=\"Ext.direct.RemotingProvider-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",
1185 "html_filename": "Observable.html"
1191 "tagname": "method",
1192 "href": "Base3.html#Ext-Base-method-statics",
1193 "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
1195 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1201 "owner": "Ext.Base",
1202 "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",
1208 "html_filename": "Base3.html"
1214 "tagname": "method",
1215 "href": "Observable.html#Ext-util-Observable-method-suspendEvents",
1216 "shortDoc": "Suspends the firing of all events. ...",
1218 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1224 "doc": "<p>Pass as true to queue up suspended events to be fired\nafter the <a href=\"#/api/Ext.direct.RemotingProvider-method-resumeEvents\" rel=\"Ext.direct.RemotingProvider-method-resumeEvents\" class=\"docClass\">resumeEvents</a> call instead of discarding all suspended events.</p>\n",
1225 "name": "queueSuspended"
1228 "name": "suspendEvents",
1229 "owner": "Ext.util.Observable",
1230 "doc": "<p>Suspends the firing of all events. (see <a href=\"#/api/Ext.direct.RemotingProvider-method-resumeEvents\" rel=\"Ext.direct.RemotingProvider-method-resumeEvents\" class=\"docClass\">resumeEvents</a>)</p>\n",
1236 "html_filename": "Observable.html"
1242 "cls": "Ext.util.Observable",
1244 "owner": "removeListener"
1247 "tagname": "method",
1248 "href": "Observable.html#Ext-util-Observable-method-un",
1249 "shortDoc": "Shorthand for removeListener. ...",
1251 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/util/Observable.js",
1257 "doc": "<p>The type of event the handler was associated with.</p>\n",
1263 "doc": "<p>The handler to remove. <strong>This must be a reference to the function passed into the\n<a href=\"#/api/Ext.direct.RemotingProvider-method-addListener\" rel=\"Ext.direct.RemotingProvider-method-addListener\" class=\"docClass\">addListener</a> call.</strong></p>\n",
1269 "doc": "<p>(optional) The scope originally specified for the handler.</p>\n",
1274 "owner": "Ext.util.Observable",
1275 "doc": "<p>Shorthand for <a href=\"#/api/Ext.direct.RemotingProvider-method-removeListener\" rel=\"Ext.direct.RemotingProvider-method-removeListener\" class=\"docClass\">removeListener</a>.</p>\n\n<p>Removes an event handler.</p>\n",
1281 "html_filename": "Observable.html"
1290 "tagname": "property",
1291 "href": "Base3.html#Ext-Base-property-self",
1292 "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
1294 "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
1297 "owner": "Ext.Base",
1298 "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",
1300 "html_filename": "Base3.html"
1315 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-event-beforecall",
1316 "shortDoc": "Fires immediately before the client-side sends off the RPC call. ...",
1318 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
1322 "type": "Ext.direct.RemotingProvider",
1328 "type": "Ext.direct.Transaction",
1331 "name": "transaction"
1336 "doc": "<p>The meta data</p>\n",
1343 "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1346 "name": "beforecall",
1347 "owner": "Ext.direct.RemotingProvider",
1348 "doc": "<p>Fires immediately before the client-side sends off the RPC call.\nBy returning false from an event handler you can prevent the call from\nexecuting.</p>\n",
1350 "html_filename": "RemotingProvider.html"
1357 "href": "RemotingProvider.html#Ext-direct-RemotingProvider-event-call",
1358 "shortDoc": "Fires immediately after the request to the server-side is sent. ...",
1360 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
1364 "type": "Ext.direct.RemotingProvider",
1370 "type": "Ext.direct.Transaction",
1373 "name": "transaction"
1378 "doc": "<p>The meta data</p>\n",
1385 "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1389 "owner": "Ext.direct.RemotingProvider",
1390 "doc": "<p>Fires immediately after the request to the server-side is sent. This does\nNOT fire after the response has come back from the call.</p>\n",
1392 "html_filename": "RemotingProvider.html"
1399 "href": "Provider2.html#Ext-direct-Provider-event-connect",
1400 "shortDoc": "Fires when the Provider connects to the server-side ...",
1402 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1406 "type": "Ext.direct.Provider",
1408 "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1415 "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1419 "owner": "Ext.direct.Provider",
1420 "doc": "<p>Fires when the Provider connects to the server-side</p>\n",
1422 "html_filename": "Provider2.html"
1429 "href": "Provider2.html#Ext-direct-Provider-event-data",
1430 "shortDoc": "Fires when the Provider receives data from the server-side ...",
1432 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1436 "type": "Ext.direct.Provider",
1438 "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1444 "doc": "<p>The Ext.Direct.Event type that occurred.</p>\n",
1451 "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1455 "owner": "Ext.direct.Provider",
1456 "doc": "<p>Fires when the Provider receives data from the server-side</p>\n",
1458 "html_filename": "Provider2.html"
1465 "href": "Provider2.html#Ext-direct-Provider-event-disconnect",
1466 "shortDoc": "Fires when the Provider disconnects from the server-side ...",
1468 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1472 "type": "Ext.direct.Provider",
1474 "doc": "<p>The <a href=\"#/api/Ext.direct.Provider\" rel=\"Ext.direct.Provider\" class=\"docClass\">Provider</a>.</p>\n",
1481 "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1484 "name": "disconnect",
1485 "owner": "Ext.direct.Provider",
1486 "doc": "<p>Fires when the Provider disconnects from the server-side</p>\n",
1488 "html_filename": "Provider2.html"
1495 "href": "Provider2.html#Ext-direct-Provider-event-exception",
1496 "shortDoc": "Fires when the Provider receives an exception from the server-side ...",
1498 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/Provider.js",
1505 "doc": "<p>The options object passed to <a href=\"#/api/Ext.util.Observable-method-addListener\" rel=\"Ext.util.Observable-method-addListener\" class=\"docClass\">Ext.util.Observable.addListener</a>.</p>\n"
1508 "name": "exception",
1509 "owner": "Ext.direct.Provider",
1510 "doc": "<p>Fires when the Provider receives an exception from the server-side</p>\n",
1512 "html_filename": "Provider2.html"
1520 "Ext.direct.Provider",
1521 "Ext.direct.JsonProvider"
1528 "href": "RemotingProvider.html#Ext-direct-RemotingProvider",
1535 "filename": "/mnt/ebs/nightly/git/SDK/platform/src/direct/RemotingProvider.js",
1537 "alternateClassNames": [
1540 "name": "Ext.direct.RemotingProvider",
1541 "doc": "<p>The <a href=\"#/api/Ext.direct.RemotingProvider\" rel=\"Ext.direct.RemotingProvider\" class=\"docClass\">RemotingProvider</a> exposes access to\nserver side methods on the client (a remote procedure call (RPC) type of\nconnection where the client can initiate a procedure on the server).</p>\n\n\n\n\n<p>This allows for code to be organized in a fashion that is maintainable,\nwhile providing a clear path between client and server, something that is\nnot always apparent when using URLs.</p>\n\n\n\n\n<p>To accomplish this the server-side needs to describe what classes and methods\nare available on the client-side. This configuration will typically be\noutputted by the server-side Ext.Direct stack when the API description is built.</p>\n\n",
1549 "html_filename": "RemotingProvider.html",
1550 "extends": "Ext.direct.JsonProvider"