X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/docs/output/Ext.js diff --git a/docs/output/Ext.js b/docs/output/Ext.js index 3bdc26f7..e08c07e4 100644 --- a/docs/output/Ext.js +++ b/docs/output/Ext.js @@ -1,3772 +1 @@ -Ext.data.JsonP.Ext({ - "allMixins": [ - - ], - "deprecated": null, - "xtype": null, - "docauthor": null, - "members": { - "cfg": [ - - ], - "method": [ - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-addBehaviors", - "shortDoc": "Applies event listeners to elements by selectors when the document is ready. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

The list of behaviors to apply

\n", - "name": "obj" - } - ], - "name": "addBehaviors", - "owner": "Ext", - "doc": "

Applies event listeners to elements by selectors when the document is ready.\nThe event name is specified with an @ suffix.

\n\n
Ext.addBehaviors({\n    // add a listener for click on all anchors in element with id foo\n    '#foo a@click' : function(e, t){\n        // do something\n    },\n\n    // add the same listener to multiple selectors (separated by comma BEFORE the @)\n    '#foo a, #bar span.some-class@mouseover' : function(){\n        // do something\n    }\n});\n
\n\n", - "linenr": 560, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-application", - "shortDoc": "Loads Ext.app.Application class and starts it up with given configuration after the page is ready. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "config" - } - ], - "name": "application", - "owner": "Ext", - "doc": "

Loads Ext.app.Application class and starts it up with given configuration after the page is ready.

\n\n

See Ext.app.Application for details.

\n", - "linenr": 948, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-apply", - "shortDoc": "Copies all the properties of config to the specified object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

The receiver of the properties

\n", - "name": "object" - }, - { - "type": "Object", - "optional": false, - "doc": "

The source of the properties

\n", - "name": "config" - }, - { - "type": "Object", - "optional": false, - "doc": "

A different object that will also be applied for default values

\n", - "name": "defaults" - } - ], - "name": "apply", - "owner": "Ext", - "doc": "

Copies all the properties of config to the specified object.\nNote that if recursive merging and cloning without referencing the original objects / arrays is needed, use\nExt.Object.merge instead.

\n", - "linenr": 34, - "return": { - "type": "Object", - "doc": "

returns obj

\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-applyIf", - "shortDoc": "Copies all the properties of config to object if they don't already exist. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

The receiver of the properties

\n", - "name": "object" - }, - { - "type": "Object", - "optional": false, - "doc": "

The source of the properties

\n", - "name": "config" - } - ], - "name": "applyIf", - "owner": "Ext", - "doc": "

Copies all the properties of config to object if they don't already exist.

\n", - "linenr": 81, - "return": { - "type": "Object", - "doc": "

returns obj

\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Function", - "doc": null, - "owner": "bind" - }, - "protected": false, - "tagname": "method", - "href": "Function.html#Ext-method-bind", - "shortDoc": "Create a new function from the provided fn, change this to the provided scope, optionally\noverrides arguments for the...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Function.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "

The function to delegate.

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": true, - "doc": "

(optional) The scope (this reference) in which the function is executed.\nIf omitted, defaults to the browser window.

\n", - "name": "scope" - }, - { - "type": "Array", - "optional": true, - "doc": "

(optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)

\n", - "name": "args" - }, - { - "type": "Boolean/Number", - "optional": true, - "doc": "

(optional) if True args are appended to call args instead of overriding,\nif a number the args are inserted at the specified position

\n", - "name": "appendArgs" - } - ], - "name": "bind", - "owner": "Ext", - "doc": "

Create a new function from the provided fn, change this to the provided scope, optionally\noverrides arguments for the call. (Defaults to the arguments passed by the caller)

\n\n

Ext.bind is alias for Ext.Function.bind

\n", - "linenr": 371, - "return": { - "type": "Function", - "doc": "

The new function

\n" - }, - "html_filename": "Function.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-callback", - "shortDoc": "Execute a callback function in a particular scope. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "

The callback to execute

\n", - "name": "callback" - }, - { - "type": "Object", - "optional": true, - "doc": "

(optional) The scope to execute in

\n", - "name": "scope" - }, - { - "type": "Array", - "optional": true, - "doc": "

(optional) The arguments to pass to the function

\n", - "name": "args" - }, - { - "type": "Number", - "optional": true, - "doc": "

(optional) Pass a number to delay the call by a number of milliseconds.

\n", - "name": "delay" - } - ], - "name": "callback", - "owner": "Ext", - "doc": "

Execute a callback function in a particular scope. If no function is passed the call is ignored.

\n\n

For example, these lines are equivalent:

\n\n
Ext.callback(myFunc, this, [arg1, arg2]);\nExt.isFunction(myFunc) && myFunc.apply(this, [arg1, arg2]);\n
\n", - "linenr": 167, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.clean instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "clean" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-clean", - "shortDoc": "Old alias to Ext.Array.clean\n\nFilter through an array and remove empty item as defined in Ext.isEmpty\n\nSee Ext.Array....", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - } - ], - "name": "clean", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.clean

\n\n

Filter through an array and remove empty item as defined in Ext.isEmpty

\n\n

See Ext.Array.filter

\n", - "linenr": 1034, - "return": { - "type": "Array", - "doc": "

results

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-clone", - "shortDoc": "Clone almost any type of variable including array, object, DOM nodes and Date without keeping the old reference ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The variable to clone

\n", - "name": "item" - } - ], - "name": "clone", - "owner": "Ext", - "doc": "

Clone almost any type of variable including array, object, DOM nodes and Date without keeping the old reference

\n", - "linenr": 485, - "return": { - "type": "Mixed", - "doc": "

clone

\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-copyTo", - "shortDoc": "Copies a set of named properties fom the source object to the destination object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

The destination object.

\n", - "name": "dest" - }, - { - "type": "Object", - "optional": false, - "doc": "

The source object.

\n", - "name": "source" - }, - { - "type": "Array/String", - "optional": false, - "doc": "

Either an Array of property names, or a comma-delimited list\nof property names to copy.

\n", - "name": "names" - }, - { - "type": "Boolean", - "optional": false, - "doc": "

(Optional) Defaults to false. Pass true to copy keys off of the prototype as well as the instance.

\n", - "name": "usePrototypeKeys" - } - ], - "name": "copyTo", - "owner": "Ext", - "doc": "

Copies a set of named properties fom the source object to the destination object.

\n\n

Example:

\n\n
ImageComponent = Ext.extend(Ext.Component, {\n    initComponent: function() {\n        this.autoEl = { tag: 'img' };\n        MyComponent.superclass.initComponent.apply(this, arguments);\n        this.initialBox = Ext.copyTo({}, this.initialConfig, 'x,y,width,height');\n    }\n});\n
\n\n

Important note: To borrow class prototype methods, use Ext.Base.borrow instead.

\n", - "linenr": 650, - "return": { - "type": "Object", - "doc": "

The modified object.

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.ClassManager", - "doc": null, - "owner": "instantiate" - }, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-create", - "shortDoc": "Instantiate a class by either full name, alias or alternate name. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "name" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

,... Additional arguments after the name will be passed to the class' constructor.

\n", - "name": "args" - } - ], - "name": "create", - "owner": "Ext", - "doc": "

Instantiate a class by either full name, alias or alternate name.

\n\n

If Ext.Loader is enabled and the class has not been defined yet, it will\nattempt to load the class via synchronous loading.

\n\n

For example, all these three lines return the same result:

\n\n
// alias\nvar window = Ext.ClassManager.instantiate('widget.window', { width: 600, height: 800, ... });\n\n// alternate name\nvar window = Ext.ClassManager.instantiate('Ext.Window', { width: 600, height: 800, ... });\n\n// full class name\nvar window = Ext.ClassManager.instantiate('Ext.window.Window', { width: 600, height: 800, ... });\n
\n\n

Ext.create is alias for Ext.ClassManager.instantiate.

\n", - "linenr": 973, - "return": { - "type": "Object", - "doc": "

instance

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.ClassManager", - "doc": null, - "owner": "instantiateByAlias" - }, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-createByAlias", - "shortDoc": "Instantiate a class by its alias. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "alias" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

,... Additional arguments after the alias will be passed to the\nclass constructor.

\n", - "name": "args" - } - ], - "name": "createByAlias", - "owner": "Ext", - "doc": "

Instantiate a class by its alias.

\n\n

If Ext.Loader is enabled and the class has not been defined yet, it will\nattempt to load the class via synchronous loading.

\n\n
var window = Ext.ClassManager.instantiateByAlias('widget.window', { width: 600, height: 800, ... });\n
\n\n

Ext.createByAlias is alias for Ext.ClassManager.instantiateByAlias.

\n", - "linenr": 1044, - "return": { - "type": "Object", - "doc": "

instance

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use widget instead.

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext", - "doc": null, - "owner": "widget" - }, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-createWidget", - "shortDoc": "Old name for widget. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

xtype of the widget to create.

\n", - "name": "name" - } - ], - "name": "createWidget", - "owner": "Ext", - "doc": "

Old name for widget.

\n\n

Convenient shorthand to create a widget by its xtype, also see Ext.ClassManager.instantiateByAlias

\n\n
var button = Ext.widget('button'); // Equivalent to Ext.create('widget.button')\nvar panel = Ext.widget('panel'); // Equivalent to Ext.create('widget.panel')\n
\n", - "linenr": 1115, - "return": { - "type": "Object", - "doc": "

widget instance

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "JSON.html#Ext-method-decode", - "shortDoc": "Shorthand for Ext.JSON.decode ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/misc/JSON.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The JSON string

\n", - "name": "json" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) Whether to return null or throw an exception if the JSON is invalid.

\n", - "name": "safe" - } - ], - "name": "decode", - "owner": "Ext", - "doc": "

Shorthand for Ext.JSON.decode

\n", - "linenr": 166, - "return": { - "type": "Object", - "doc": "

The resulting object

\n" - }, - "html_filename": "JSON.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Function", - "doc": null, - "owner": "defer" - }, - "protected": false, - "tagname": "method", - "href": "Function.html#Ext-method-defer", - "shortDoc": "Calls this function after the number of millseconds specified, optionally in a specific scope. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Function.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "

The function to defer.

\n", - "name": "fn" - }, - { - "type": "Number", - "optional": false, - "doc": "

The number of milliseconds for the setTimeout call\n(if less than or equal to 0 the function is executed immediately)

\n", - "name": "millis" - }, - { - "type": "Object", - "optional": true, - "doc": "

(optional) The scope (this reference) in which the function is executed.\nIf omitted, defaults to the browser window.

\n", - "name": "scope" - }, - { - "type": "Array", - "optional": true, - "doc": "

(optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)

\n", - "name": "args" - }, - { - "type": "Boolean/Number", - "optional": true, - "doc": "

(optional) if True args are appended to call args instead of overriding,\nif a number the args are inserted at the specified position

\n", - "name": "appendArgs" - } - ], - "name": "defer", - "owner": "Ext", - "doc": "

Calls this function after the number of millseconds specified, optionally in a specific scope. Example usage:

\n\n
var sayHi = function(name){\n    alert('Hi, ' + name);\n}\n\n// executes immediately:\nsayHi('Fred');\n\n// executes after 2 seconds:\nExt.Function.defer(sayHi, 2000, this, ['Fred']);\n\n// this syntax is sometimes useful for deferring\n// execution of an anonymous function:\nExt.Function.defer(function(){\n    alert('Anonymous');\n}, 100);\n
\n\n

Ext.defer is alias for Ext.Function.defer

\n", - "linenr": 357, - "return": { - "type": "Number", - "doc": "

The timeout id that can be used with clearTimeout

\n" - }, - "html_filename": "Function.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.ClassManager", - "doc": null, - "owner": "create" - }, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-define", - "shortDoc": "Defines a class. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The class name to create in string dot-namespaced format, for example:\n'My.very.awesome.Class', 'FeedViewer.plugin.CoolPager'\nIt is highly recommended to follow this simple convention:

\n\n\n\n", - "name": "className" - }, - { - "type": "Object", - "optional": false, - "doc": "

The key - value pairs of properties to apply to this class. Property names can be of any valid\nstrings, except those in the reserved list below:

\n\n\n\n", - "name": "data" - }, - { - "type": "Function", - "optional": false, - "doc": "

Optional callback to execute after the class is created, the execution scope of which\n(this) will be the newly created class itself.

\n", - "name": "createdFn" - } - ], - "name": "define", - "owner": "Ext", - "doc": "

Defines a class.

\n\n
Ext.ClassManager.create('My.awesome.Class', {\n    someProperty: 'something',\n    someMethod: function() { ... }\n    ...\n\n}, function() {\n    alert('Created!');\n    alert(this === My.awesome.Class); // alerts true\n\n    var myInstance = new this();\n});\n
\n\n

Ext.define is alias for Ext.ClassManager.create.

\n", - "linenr": 1051, - "return": { - "type": "Ext.Base", - "doc": "\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-destroy", - "shortDoc": "Attempts to destroy any objects passed to it by removing all event listeners, removing them from the\nDOM (if applicab...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

An Ext.core.Element, Ext.Component, or an Array of either of these to destroy

\n", - "name": "arg1" - }, - { - "type": "Mixed", - "optional": true, - "doc": "

(optional)

\n", - "name": "arg2" - }, - { - "type": "Mixed", - "optional": true, - "doc": "

... (optional)

\n", - "name": "etc" - } - ], - "name": "destroy", - "owner": "Ext", - "doc": "

Attempts to destroy any objects passed to it by removing all event listeners, removing them from the\nDOM (if applicable) and calling their destroy functions (if available). This method is primarily\nintended for arguments of type Ext.core.Element and Ext.Component, but any subclass of\nExt.util.Observable can be passed in. Any number of elements and/or components can be\npassed into this function in a single call as separate arguments.

\n", - "linenr": 137, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-destroyMembers", - "shortDoc": "Attempts to destroy and then remove a set of named properties of the passed object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

The object (most likely a Component) who's properties you wish to destroy.

\n", - "name": "o" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

The name of the property to destroy and remove from the object.

\n", - "name": "arg1" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

... More property names to destroy and remove.

\n", - "name": "etc" - } - ], - "name": "destroyMembers", - "owner": "Ext", - "doc": "

Attempts to destroy and then remove a set of named properties of the passed object.

\n", - "linenr": 684, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "each" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-each", - "shortDoc": "Iterates an array or an iterable value and invoke the given callback function for each item. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array/NodeList/Mixed", - "optional": false, - "doc": "

The value to be iterated. If this\nargument is not iterable, the callback function is called once.

\n", - "name": "iterable" - }, - { - "type": "Function", - "optional": false, - "doc": "

The callback function. If it returns false, the iteration stops and this method returns\nthe current index. Arguments passed to this callback function are:

\n\n\n\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

(Optional) The scope (this reference) in which the specified function is executed.

\n", - "name": "scope" - }, - { - "type": "Boolean", - "optional": false, - "doc": "

(Optional) Reverse the iteration order (loop from the end to the beginning)\nDefaults false

\n", - "name": "reverse" - } - ], - "name": "each", - "owner": "Ext", - "doc": "

Iterates an array or an iterable value and invoke the given callback function for each item.

\n\n
var countries = ['Vietnam', 'Singapore', 'United States', 'Russia'];\n\nExt.Array.each(countries, function(name, index, countriesItSelf) {\n    console.log(name);\n});\n\nvar sum = function() {\n    var sum = 0;\n\n    Ext.Array.each(arguments, function(value) {\n        sum += value;\n    });\n\n    return sum;\n};\n\nsum(1, 2, 3); // returns 6\n
\n\n

The iteration can be stopped by returning false in the function callback.

\n\n
Ext.Array.each(countries, function(name, index, countriesItSelf) {\n    if (name === 'Singapore') {\n        return false; // break here\n    }\n});\n
\n\n

Ext.each is alias for Ext.Array.each

\n", - "linenr": 975, - "return": { - "type": "Boolean", - "doc": "

See description for the fn parameter.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-emptyFn", - "shortDoc": "A reusable empty function ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - - ], - "name": "emptyFn", - "owner": "Ext", - "doc": "

A reusable empty function

\n", - "linenr": 74, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "JSON.html#Ext-method-encode", - "shortDoc": "Shorthand for Ext.JSON.encode ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/misc/JSON.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The variable to encode

\n", - "name": "o" - } - ], - "name": "encode", - "owner": "Ext", - "doc": "

Shorthand for Ext.JSON.encode

\n", - "linenr": 158, - "return": { - "type": "String", - "doc": "

The JSON string

\n" - }, - "html_filename": "JSON.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.String.escapeRegex instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-escapeRe", - "shortDoc": "Escapes the passed string for use in a regular expression ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "str" - } - ], - "name": "escapeRe", - "owner": "Ext", - "doc": "

Escapes the passed string for use in a regular expression

\n", - "linenr": 550, - "return": { - "type": "String", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Loader", - "doc": null, - "owner": "exclude" - }, - "protected": false, - "tagname": "method", - "href": "Loader.html#Ext-method-exclude", - "shortDoc": "Explicitly exclude files from being loaded. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Loader.js", - "private": false, - "params": [ - { - "type": "String/[String]", - "optional": false, - "doc": "\n", - "name": "excludes" - } - ], - "name": "exclude", - "owner": "Ext", - "doc": "

Explicitly exclude files from being loaded. Useful when used in conjunction with a broad include expression.\nCan be chained with more require and exclude methods, e.g.:

\n\n
Ext.exclude('Ext.data.*').require('*');\n\nExt.exclude('widget.button*').require('widget.*');\n
\n\n

Ext.exclude is alias for Ext.Loader.exclude for convenience.

\n", - "linenr": 955, - "return": { - "type": "Object", - "doc": "

object contains require method for chaining

\n" - }, - "html_filename": "Loader.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.define instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-extend", - "shortDoc": "This method deprecated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "\n", - "name": "superclass" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "overrides" - } - ], - "name": "extend", - "owner": "Ext", - "doc": "

This method deprecated. Use Ext.define instead.

\n", - "linenr": 133, - "return": { - "type": "Function", - "doc": "

The subclass constructor from the overrides parameter, or a generated one if not provided.

\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.flatten instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "flatten" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-flatten", - "shortDoc": "Old alias to Ext.Array.flatten\n\nRecursively flattens into 1-d Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "array" - } - ], - "name": "flatten", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.flatten

\n\n

Recursively flattens into 1-d Array. Injects Arrays inline.

\n", - "linenr": 1025, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Element2.html#Ext-method-fly", - "shortDoc": "Gets the globally shared flyweight Element, with the passed node as the active element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/dom/Element.js", - "private": false, - "params": [ - { - "type": "String/HTMLElement", - "optional": false, - "doc": "

The dom node or id

\n", - "name": "el" - }, - { - "type": "String", - "optional": true, - "doc": "

(optional) Allows for creation of named reusable flyweights to prevent conflicts\n(e.g. internally Ext uses \"_global\")

\n", - "name": "named" - } - ], - "name": "fly", - "owner": "Ext", - "doc": "

Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -\nthe dom node can be overwritten by other code. Shorthand of Ext.core.Element.fly

\n\n\n

Use this to make one-time references to DOM elements which are not going to be accessed again either by\napplication code, or by Ext's classes. If accessing an element which will be processed regularly, then Ext.get\nwill be more appropriate to take advantage of the caching provided by the Ext.core.Element class.

\n\n", - "linenr": 992, - "return": { - "type": "Element", - "doc": "

The shared Element object (or null if no matching element was found)

\n" - }, - "html_filename": "Element2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Element2.html#Ext-method-get", - "shortDoc": "Retrieves Ext.core.Element objects. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/dom/Element.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The id of the node, a DOM Node or an existing Element.

\n", - "name": "el" - } - ], - "name": "get", - "owner": "Ext", - "doc": "

Retrieves Ext.core.Element objects.

\n\n

This method does not retrieve Components. This method\nretrieves Ext.core.Element objects which encapsulate DOM elements. To retrieve a Component by\nits ID, use Ext.ComponentManager.get.

\n\n\n

Uses simple caching to consistently return the same object. Automatically fixes if an\nobject was recreated with the same id via AJAX or DOM.

\n\n\n

Shorthand of Ext.core.Element.get

\n", - "linenr": 977, - "return": { - "type": "Element", - "doc": "

The Element object (or null if no matching element was found)

\n" - }, - "html_filename": "Element2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getBody", - "shortDoc": "Returns the current document body as an Ext.core.Element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - - ], - "name": "getBody", - "owner": "Ext", - "doc": "

Returns the current document body as an Ext.core.Element.

\n", - "linenr": 85, - "return": { - "type": "void", - "doc": "

Ext.core.Element The document body

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.ClassManager", - "doc": null, - "owner": "getClass" - }, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-getClass", - "shortDoc": "Get the class of the provided object; returns null if it's not an instance\nof any class created with Ext.define. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "object" - } - ], - "name": "getClass", - "owner": "Ext", - "doc": "

Get the class of the provided object; returns null if it's not an instance\nof any class created with Ext.define.

\n\n
var component = new Ext.Component();\n\nExt.ClassManager.getClass(component); // returns Ext.Component\n
\n\n

Ext.getClass is alias for Ext.ClassManager.getClass.

\n", - "linenr": 1085, - "return": { - "type": "Class", - "doc": "

class

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.ClassManager", - "doc": null, - "owner": "getName" - }, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-getClassName", - "shortDoc": "Get the name of the class by its reference or its instance. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "Class/Object", - "optional": false, - "doc": "\n", - "name": "object" - } - ], - "name": "getClassName", - "owner": "Ext", - "doc": "

Get the name of the class by its reference or its instance.

\n\n
Ext.ClassManager.getName(Ext.Action); // returns \"Ext.Action\"\n
\n\n

Ext.getClassName is alias for Ext.ClassManager.getName.

\n", - "linenr": 1058, - "return": { - "type": "String", - "doc": "

className

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getCmp", - "shortDoc": "This is shorthand reference to Ext.ComponentManager.get. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The component id

\n", - "name": "id" - } - ], - "name": "getCmp", - "owner": "Ext", - "doc": "

This is shorthand reference to Ext.ComponentManager.get.\nLooks up an existing Component by id

\n", - "linenr": 118, - "return": { - "type": "void", - "doc": "

Ext.Component The Component, undefined if not found, or null if a\nClass was found.

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getDoc", - "shortDoc": "Returns the current HTML document object as an Ext.core.Element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - - ], - "name": "getDoc", - "owner": "Ext", - "doc": "

Returns the current HTML document object as an Ext.core.Element.

\n", - "linenr": 110, - "return": { - "type": "void", - "doc": "

Ext.core.Element The document

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getDom", - "shortDoc": "Return the dom node for the passed String (id), dom node, or Ext.core.Element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "\n", - "name": "el" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "strict" - } - ], - "name": "getDom", - "owner": "Ext", - "doc": "

Return the dom node for the passed String (id), dom node, or Ext.core.Element.\nOptional 'strict' flag is needed for IE since it can return 'name' and\n'id' elements by using getElementById.\nHere are some examples:

\n\n
// gets dom node based on id\nvar elDom = Ext.getDom('elId');\n// gets dom node based on the dom node\nvar elDom1 = Ext.getDom(elDom);\n\n// If we don't know if we are working with an\n// Ext.core.Element or a dom node use Ext.getDom\nfunction(el){\n    var dom = Ext.getDom(el);\n    // do something with the dom node\n}\n
\n\n\n

Note: the dom node to be found actually needs to exist (be rendered, etc)\nwhen this method is called to be successful.

\n", - "linenr": 310, - "return": { - "type": "void", - "doc": "

HTMLElement

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getHead", - "shortDoc": "Returns the current document head as an Ext.core.Element. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - - ], - "name": "getHead", - "owner": "Ext", - "doc": "

Returns the current document head as an Ext.core.Element.

\n", - "linenr": 93, - "return": { - "type": "void", - "doc": "

Ext.core.Element The document head

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getOrientation", - "shortDoc": "Returns the current orientation of the mobile device ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - - ], - "name": "getOrientation", - "owner": "Ext", - "doc": "

Returns the current orientation of the mobile device

\n", - "linenr": 129, - "return": { - "type": "String", - "doc": "

Either 'portrait' or 'landscape'

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": { - "version": null, - "text": "\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getScrollBarWidth", - "shortDoc": "Utility method for getting the width of the browser's vertical scrollbar. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) true to force a recalculation of the value.

\n", - "name": "force" - } - ], - "name": "getScrollBarWidth", - "owner": "Ext", - "doc": "

Utility method for getting the width of the browser's vertical scrollbar. This\ncan differ depending on operating system settings, such as the theme or font size.

\n\n

This method is deprected in favor of getScrollbarSize.

\n", - "linenr": 635, - "return": { - "type": "Number", - "doc": "

The width of a vertical scrollbar.

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-getScrollbarSize", - "shortDoc": "Returns the size of the browser scrollbars. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) true to force a recalculation of the value.

\n", - "name": "force" - } - ], - "name": "getScrollbarSize", - "owner": "Ext", - "doc": "

Returns the size of the browser scrollbars. This can differ depending on\noperating system settings, such as the theme or font size.

\n", - "linenr": 601, - "return": { - "type": "Object", - "doc": "

An object containing the width of a vertical scrollbar and the\nheight of a horizontal scrollbar.

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "StoreManager.html#Ext-method-getStore", - "shortDoc": "Gets a registered Store by id (shortcut to Ext.data.StoreManager.lookup) ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/StoreManager.js", - "private": false, - "params": [ - { - "type": "String/Object", - "optional": false, - "doc": "

The id of the Store, or a Store instance

\n", - "name": "id" - } - ], - "name": "getStore", - "owner": "Ext", - "doc": "

Gets a registered Store by id (shortcut to Ext.data.StoreManager.lookup)

\n", - "linenr": 155, - "return": { - "type": "Ext.data.Store", - "doc": "\n" - }, - "html_filename": "StoreManager.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-htmlDecode", - "shortDoc": "Convert certain characters (&, <, >, and ') from their HTML character equivalents. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The string to decode

\n", - "name": "value" - } - ], - "name": "htmlDecode", - "owner": "Ext", - "doc": "

Convert certain characters (&, <, >, and ') from their HTML character equivalents.

\n", - "linenr": 201, - "return": { - "type": "String", - "doc": "

The decoded text

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-htmlEncode", - "shortDoc": "Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The string to encode

\n", - "name": "value" - } - ], - "name": "htmlEncode", - "owner": "Ext", - "doc": "

Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.

\n", - "linenr": 192, - "return": { - "type": "String", - "doc": "

The encoded text

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-id", - "shortDoc": "Generates unique ids. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": true, - "doc": "

(optional) The element to generate an id for

\n", - "name": "el" - }, - { - "type": "String", - "optional": true, - "doc": "

(optional) Id prefix (defaults \"ext-gen\")

\n", - "name": "prefix" - } - ], - "name": "id", - "owner": "Ext", - "doc": "

Generates unique ids. If the element already has an id, it is unchanged

\n", - "linenr": 57, - "return": { - "type": "String", - "doc": "

The generated Id.

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Will be removed in the next major version

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-invoke", - "shortDoc": "Invokes a method on each item in an Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The Array of items to invoke the method on.

\n", - "name": "arr" - }, - { - "type": "String", - "optional": false, - "doc": "

The method name to invoke.

\n", - "name": "methodName" - }, - { - "type": "...*", - "optional": false, - "doc": "

Arguments to send into the method invocation.

\n", - "name": "args" - } - ], - "name": "invoke", - "owner": "Ext", - "doc": "

Invokes a method on each item in an Array.

\n\n
// Example:\nExt.invoke(Ext.query(\"p\"), \"getAttribute\", \"id\");\n// [el1.getAttribute(\"id\"), el2.getAttribute(\"id\"), ..., elN.getAttribute(\"id\")]\n
\n\n", - "linenr": 851, - "return": { - "type": "Array", - "doc": "

The results of invoking the method on each item in the array.

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isArray", - "shortDoc": "Returns true if the passed value is a JavaScript Array, false otherwise. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The target to test

\n", - "name": "target" - } - ], - "name": "isArray", - "owner": "Ext", - "doc": "

Returns true if the passed value is a JavaScript Array, false otherwise.

\n", - "linenr": 348, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isBoolean", - "shortDoc": "Returns true if the passed value is a boolean. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isBoolean", - "owner": "Ext", - "doc": "

Returns true if the passed value is a boolean.

\n", - "linenr": 436, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isDate", - "shortDoc": "Returns true if the passed value is a JavaScript Date object, false otherwise. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

The object to test

\n", - "name": "object" - } - ], - "name": "isDate", - "owner": "Ext", - "doc": "

Returns true if the passed value is a JavaScript Date object, false otherwise.

\n", - "linenr": 359, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isDefined", - "shortDoc": "Returns true if the passed value is defined. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isDefined", - "owner": "Ext", - "doc": "

Returns true if the passed value is defined.

\n", - "linenr": 464, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isElement", - "shortDoc": "Returns true if the passed value is an HTMLElement ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isElement", - "owner": "Ext", - "doc": "

Returns true if the passed value is an HTMLElement

\n", - "linenr": 446, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isEmpty", - "shortDoc": "Returns true if the passed value is empty, false otherwise. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) true to allow empty strings (defaults to false)

\n", - "name": "allowEmptyString" - } - ], - "name": "isEmpty", - "owner": "Ext", - "doc": "

Returns true if the passed value is empty, false otherwise. The value is deemed to be empty if it is either:

\n\n\n\n", - "linenr": 331, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isFunction", - "shortDoc": "Returns true if the passed value is a JavaScript Function, false otherwise. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isFunction", - "owner": "Ext", - "doc": "

Returns true if the passed value is a JavaScript Function, false otherwise.

\n", - "linenr": 394, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isIterable", - "shortDoc": "Returns true if the passed value is iterable, false otherwise ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isIterable", - "owner": "Ext", - "doc": "

Returns true if the passed value is iterable, false otherwise

\n", - "linenr": 473, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isNumber", - "shortDoc": "Returns true if the passed value is a number. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isNumber", - "owner": "Ext", - "doc": "

Returns true if the passed value is a number. Returns false for non-finite numbers.

\n", - "linenr": 409, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isNumeric", - "shortDoc": "Validates that a value is numeric. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

Examples: 1, '1', '2.34'

\n", - "name": "value" - } - ], - "name": "isNumeric", - "owner": "Ext", - "doc": "

Validates that a value is numeric.

\n", - "linenr": 418, - "return": { - "type": "Boolean", - "doc": "

True if numeric, false otherwise

\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isObject", - "shortDoc": "Returns true if the passed value is a JavaScript Object, false otherwise. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isObject", - "owner": "Ext", - "doc": "

Returns true if the passed value is a JavaScript Object, false otherwise.

\n", - "linenr": 368, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isPrimitive", - "shortDoc": "Returns true if the passed value is a JavaScript 'primitive', a string, number or boolean. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isPrimitive", - "owner": "Ext", - "doc": "

Returns true if the passed value is a JavaScript 'primitive', a string, number or boolean.

\n", - "linenr": 383, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isString", - "shortDoc": "Returns true if the passed value is a string. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isString", - "owner": "Ext", - "doc": "

Returns true if the passed value is a string.

\n", - "linenr": 427, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-isTextNode", - "shortDoc": "Returns true if the passed value is a TextNode ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - } - ], - "name": "isTextNode", - "owner": "Ext", - "doc": "

Returns true if the passed value is a TextNode

\n", - "linenr": 455, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-iterate", - "shortDoc": "Iterates either an array or an object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Object/Array", - "optional": false, - "doc": "

The object or array to be iterated.

\n", - "name": "object" - }, - { - "type": "Function", - "optional": false, - "doc": "

The function to be called for each iteration. See and Ext.Array.each and\nExt.Object.each for detailed lists of arguments passed to this function depending on the given object\ntype that is being iterated.

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

(Optional) The scope (this reference) in which the specified function is executed.\nDefaults to the object being iterated itself.

\n", - "name": "scope" - } - ], - "name": "iterate", - "owner": "Ext", - "doc": "

Iterates either an array or an object. This method delegates to\nExt.Array.each if the given value is iterable, and Ext.Object.each otherwise.

\n", - "linenr": 101, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-log", - "shortDoc": "Logs a message. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "String|Object", - "optional": false, - "doc": "

The message to log or an options object with any\nof the following properties:

\n\n\n\n", - "name": "message" - } - ], - "name": "log", - "owner": "Ext", - "doc": "

Logs a message. If a console is present it will be used. On Opera, the method\n\"opera.postError\" is called. In other cases, the message is logged to an array\n\"Ext.log.out\". An attached debugger can watch this array and view the log. The\nlog buffer is limited to a maximum of \"Ext.log.max\" entries (defaults to 100).

\n\n

If additional parameters are passed, they are joined and appended to the message.

\n\n

This method does nothing in a release build.

\n", - "linenr": 697, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.max instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "max" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-max", - "shortDoc": "Old alias to Ext.Array.max\n\nReturns the maximum value in the Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The Array from which to select the maximum value.

\n", - "name": "array" - }, - { - "type": "Function", - "optional": true, - "doc": "

(optional) a function to perform the comparision which determines maximization.\nIf omitted the \">\" operator will be used. Note: gt = 1; eq = 0; lt = -1

\n", - "name": "comparisonFn" - } - ], - "name": "max", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.max

\n\n

Returns the maximum value in the Array.

\n", - "linenr": 998, - "return": { - "type": "Mixed", - "doc": "

maxValue The maximum value

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.mean instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "mean" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-mean", - "shortDoc": "Old alias to Ext.Array.mean\n\nCalculates the mean of all items in the array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array to calculate the mean value of.

\n", - "name": "array" - } - ], - "name": "mean", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.mean

\n\n

Calculates the mean of all items in the array.

\n", - "linenr": 1016, - "return": { - "type": "Number", - "doc": "

The mean.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Object.html#Ext-method-merge", - "shortDoc": "A convenient alias method for Ext.Object.merge ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Object.js", - "private": false, - "params": [ - - ], - "name": "merge", - "owner": "Ext", - "doc": "

A convenient alias method for Ext.Object.merge

\n", - "linenr": 490, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Object.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.min instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "min" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-min", - "shortDoc": "Old alias to Ext.Array.min\n\nReturns the minimum value in the Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The Array from which to select the minimum value.

\n", - "name": "array" - }, - { - "type": "Function", - "optional": true, - "doc": "

(optional) a function to perform the comparision which determines minimization.\nIf omitted the \"<\" operator will be used. Note: gt = 1; eq = 0; lt = -1

\n", - "name": "comparisonFn" - } - ], - "name": "min", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.min

\n\n

Returns the minimum value in the Array.

\n", - "linenr": 989, - "return": { - "type": "Mixed", - "doc": "

minValue The minimum value

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-namespace", - "shortDoc": "Creates namespaces to be used for scoping variables and classes so that they are not global. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "namespace1" - }, - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "namespace2" - }, - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "etc" - } - ], - "name": "namespace", - "owner": "Ext", - "doc": "

Creates namespaces to be used for scoping variables and classes so that they are not global.\nSpecifying the last node of a namespace implicitly creates all other nodes. Usage:

\n\n
Ext.namespace('Company', 'Company.data');\n\n// equivalent and preferable to the above syntax\nExt.namespace('Company.data');\n\nCompany.Widget = function() { ... };\n\nCompany.data.CustomStore = function(config) { ... };\n
\n", - "linenr": 1092, - "return": { - "type": "Object", - "doc": "

The namespace object. (If multiple arguments are passed, this will be the last namespace created)

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext", - "doc": null, - "owner": "namespace" - }, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-ns", - "shortDoc": "Convenient alias for Ext.namespace\n\nCreates namespaces to be used for scoping variables and classes so that they are ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "namespace1" - }, - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "namespace2" - }, - { - "type": "String", - "optional": false, - "doc": "\n", - "name": "etc" - } - ], - "name": "ns", - "owner": "Ext", - "doc": "

Convenient alias for Ext.namespace

\n\n

Creates namespaces to be used for scoping variables and classes so that they are not global.\nSpecifying the last node of a namespace implicitly creates all other nodes. Usage:

\n\n
Ext.namespace('Company', 'Company.data');\n\n// equivalent and preferable to the above syntax\nExt.namespace('Company.data');\n\nCompany.Widget = function() { ... };\n\nCompany.data.CustomStore = function(config) { ... };\n
\n", - "linenr": 1124, - "return": { - "type": "Object", - "doc": "

The namespace object. (If multiple arguments are passed, this will be the last namespace created)

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Replaced by Ext.Number.from

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Number3.html#Ext-method-num", - "shortDoc": "This method is deprecated, please use Ext.Number.from instead ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Number.js", - "private": false, - "params": [ - - ], - "name": "num", - "owner": "Ext", - "doc": "

This method is deprecated, please use Ext.Number.from instead

\n", - "linenr": 98, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Number3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventManager.html#Ext-method-onDocumentReady", - "shortDoc": "Alias for Ext.EventManager.onDocumentReady ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventManager.js", - "private": false, - "params": [ - - ], - "name": "onDocumentReady", - "owner": "Ext", - "doc": "

Alias for Ext.EventManager.onDocumentReady

\n", - "linenr": 852, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "EventManager.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Loader", - "doc": null, - "owner": "onReady" - }, - "protected": false, - "tagname": "method", - "href": "Loader.html#Ext-method-onReady", - "shortDoc": "Adds new listener to be executed when all required scripts are fully loaded. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Loader.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "

The function callback to be executed

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

The execution scope (this) of the callback function

\n", - "name": "scope" - }, - { - "type": "Boolean", - "optional": false, - "doc": "

Whether or not to wait for document dom ready as well

\n", - "name": "withDomReady" - }, - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "options" - } - ], - "name": "onReady", - "owner": "Ext", - "doc": "

Adds new listener to be executed when all required scripts are fully loaded.

\n", - "linenr": 962, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Loader.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-override", - "shortDoc": "Proxy to Ext.Base.override. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

The class to override

\n", - "name": "cls" - }, - { - "type": "Object", - "optional": false, - "doc": "

The list of functions to add to origClass. This should be specified as an object literal\ncontaining one or more methods.

\n", - "name": "overrides" - } - ], - "name": "override", - "owner": "Ext", - "doc": "

Proxy to Ext.Base.override. Please refer Ext.Base.override for further details.

\n\n
Ext.define('My.cool.Class', {\n    sayHi: function() {\n        alert('Hi!');\n    }\n}\n\nExt.override(My.cool.Class, {\n    sayHi: function() {\n        alert('About to say...');\n\n        this.callOverridden();\n    }\n});\n\nvar cool = new My.cool.Class();\ncool.sayHi(); // alerts 'About to say...'\n              // alerts 'Hi!'\n
\n\n

Please note that this.callOverridden() only works if the class was previously\ncreated with {@link Ext#define)

\n", - "linenr": 202, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Will be removed in the next major version

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-partition", - "shortDoc": "Partitions the set into two sets: a true set and a false set. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The array to partition

\n", - "name": "arr" - }, - { - "type": "Function", - "optional": true, - "doc": "

(optional) a function to determine truth. If this is omitted the element\nitself must be able to be evaluated for its truthfulness.

\n", - "name": "truth" - } - ], - "name": "partition", - "owner": "Ext", - "doc": "

Partitions the set into two sets: a true set and a false set.\nExample:\nExample2:

\n\n
// Example 1:\nExt.partition([true, false, true, true, false]); // [[true, true, true], [false, false]]\n\n// Example 2:\nExt.partition(\n    Ext.query(\"p\"),\n    function(val){\n        return val.className == \"class1\"\n    }\n);\n// true are those paragraph elements with a className of \"class1\",\n// false set are those that do not have that className.\n
\n\n", - "linenr": 819, - "return": { - "type": "Array", - "doc": "

[array of truish values, array of falsy values]

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Function", - "doc": null, - "owner": "pass" - }, - "protected": false, - "tagname": "method", - "href": "Function.html#Ext-method-pass", - "shortDoc": "Create a new function from the provided fn, the arguments of which are pre-set to args. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Function.js", - "private": false, - "params": [ - { - "type": "Function", - "optional": false, - "doc": "

The original function

\n", - "name": "fn" - }, - { - "type": "Array", - "optional": false, - "doc": "

The arguments to pass to new callback

\n", - "name": "args" - }, - { - "type": "Object", - "optional": true, - "doc": "

(optional) The scope (this reference) in which the function is executed.

\n", - "name": "scope" - } - ], - "name": "pass", - "owner": "Ext", - "doc": "

Create a new function from the provided fn, the arguments of which are pre-set to args.\nNew arguments passed to the newly created callback when it's invoked are appended after the pre-set ones.\nThis is especially useful when creating callbacks.

\n\n

For example:

\n\n
var originalFunction = function(){\n    alert(Ext.Array.from(arguments).join(' '));\n};\n\nvar callback = Ext.Function.pass(originalFunction, ['Hello', 'World']);\n\ncallback(); // alerts 'Hello World'\ncallback('by Me'); // alerts 'Hello World by Me'\n
\n\n

Ext.pass is alias for Ext.Function.pass

\n", - "linenr": 364, - "return": { - "type": "Function", - "doc": "

The new callback function

\n" - }, - "html_filename": "Function.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.pluck instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "pluck" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-pluck", - "shortDoc": "Old alias to Ext.Array.pluck\n\nPlucks the value of a property from each item in the Array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array|NodeList", - "optional": false, - "doc": "

The Array of items to pluck the value from.

\n", - "name": "array" - }, - { - "type": "String", - "optional": false, - "doc": "

The property name to pluck from each element.

\n", - "name": "propertyName" - } - ], - "name": "pluck", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.pluck

\n\n

Plucks the value of a property from each item in the Array. Example:

\n\n
Ext.Array.pluck(Ext.query(\"p\"), \"className\"); // [el1.className, el2.className, ..., elN.className]\n
\n", - "linenr": 1052, - "return": { - "type": "Array", - "doc": "

The value from each item in the Array.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "PluginManager.html#Ext-method-preg", - "shortDoc": "Shorthand for Ext.PluginManager.registerType ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/PluginManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The ptype mnemonic string by which the Plugin class\nmay be looked up.

\n", - "name": "ptype" - }, - { - "type": "Constructor", - "optional": false, - "doc": "

The new Plugin class.

\n", - "name": "cls" - } - ], - "name": "preg", - "owner": "Ext", - "doc": "

Shorthand for Ext.PluginManager.registerType

\n", - "linenr": 85, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "PluginManager.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "DomQuery.html#Ext-method-query", - "shortDoc": "Selects an array of DOM nodes by CSS/XPath selector. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/dom/DomQuery.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The selector/xpath query

\n", - "name": "path" - }, - { - "type": "Node", - "optional": true, - "doc": "

(optional) The start of the query (defaults to document).

\n", - "name": "root" - } - ], - "name": "query", - "owner": "Ext", - "doc": "

Selects an array of DOM nodes by CSS/XPath selector. Shorthand of Ext.DomQuery.select

\n", - "linenr": 961, - "return": { - "type": "Array", - "doc": "\n" - }, - "html_filename": "DomQuery.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "ModelManager.html#Ext-method-regModel", - "shortDoc": "Creates a new Model class from the specified config object. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/ModelManager.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "

A configuration object for the Model you wish to create.

\n", - "name": "config" - } - ], - "name": "regModel", - "owner": "Ext", - "doc": "

Creates a new Model class from the specified config object. See Ext.data.Model for full examples.

\n", - "linenr": 148, - "return": { - "type": "Ext.data.Model", - "doc": "

The newly registered Model

\n" - }, - "html_filename": "ModelManager.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "StoreManager.html#Ext-method-regStore", - "shortDoc": "Creates a new store for the given id and config, then registers it with the Store Mananger. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/src/data/StoreManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The id to set on the new store

\n", - "name": "id" - }, - { - "type": "Object", - "optional": false, - "doc": "

The store config

\n", - "name": "config" - }, - { - "type": "Constructor", - "optional": false, - "doc": "

The new Component class.

\n", - "name": "cls" - } - ], - "name": "regStore", - "owner": "Ext", - "doc": "

Creates a new store for the given id and config, then registers it with the Store Mananger. \nSample usage:

\n\n\n\n\n
    Ext.regStore('AllUsers', {\n        model: 'User'\n    });\n\n    //the store can now easily be used throughout the application\n    new Ext.List({\n        store: 'AllUsers',\n        ... other config\n    });\n    
\n\n", - "linenr": 117, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "StoreManager.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-removeNode", - "shortDoc": "Removes a DOM node from the document. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "HTMLElement", - "optional": false, - "doc": "

The node to remove

\n", - "name": "node" - } - ], - "name": "removeNode", - "owner": "Ext", - "doc": "

Removes a DOM node from the document.

\n\n

Removes this element from the document, removes all DOM event listeners, and deletes the cache reference.\nAll DOM event listeners are removed from this element. If Ext.enableNestedListenerRemoval is\ntrue, then DOM event listeners are also removed from all child nodes. The body node\nwill be ignored if passed in.

\n\n", - "linenr": 358, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Loader", - "doc": null, - "owner": "require" - }, - "protected": false, - "tagname": "method", - "href": "Loader.html#Ext-method-require", - "shortDoc": "Loads all classes by the given names and all their direct dependencies;\noptionally executes the given callback functi...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Loader.js", - "private": false, - "params": [ - { - "type": "String/[String]", - "optional": false, - "doc": "

Can either be a string or an array of string

\n", - "name": "expressions" - }, - { - "type": "Function", - "optional": false, - "doc": "

(Optional) The callback function

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

(Optional) The execution scope (this) of the callback function

\n", - "name": "scope" - }, - { - "type": "String/[String]", - "optional": false, - "doc": "

(Optional) Classes to be excluded, useful when being used with expressions

\n", - "name": "excludes" - } - ], - "name": "require", - "owner": "Ext", - "doc": "

Loads all classes by the given names and all their direct dependencies;\noptionally executes the given callback function when finishes, within the optional scope.

\n\n

Ext.require is alias for Ext.Loader.require for convenience.

\n", - "linenr": 941, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Loader.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "CompositeElement2.html#Ext-method-select", - "shortDoc": "Selects elements based on the passed CSS selector to enable Element methods\nto be applied to many related elements in...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/dom/CompositeElement.js", - "private": false, - "params": [ - { - "type": "String/Array", - "optional": false, - "doc": "

The CSS selector or an array of elements

\n", - "name": "selector" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) true to create a unique Ext.core.Element for each element (defaults to a shared flyweight object)

\n", - "name": "unique" - }, - { - "type": "HTMLElement/String", - "optional": true, - "doc": "

(optional) The root element of the query or id of the root

\n", - "name": "root" - } - ], - "name": "select", - "owner": "Ext", - "doc": "

Selects elements based on the passed CSS selector to enable Element methods\nto be applied to many related elements in one statement through the returned CompositeElement or\nCompositeElementLite object.

\n", - "linenr": 109, - "return": { - "type": "CompositeElementLite/CompositeElement", - "doc": "\n" - }, - "html_filename": "CompositeElement2.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.sum instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "sum" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-sum", - "shortDoc": "Old alias to Ext.Array.sum\n\nCalculates the sum of all items in the given array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The Array to calculate the sum value of.

\n", - "name": "array" - } - ], - "name": "sum", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.sum

\n\n

Calculates the sum of all items in the given array.

\n", - "linenr": 1007, - "return": { - "type": "Number", - "doc": "

The sum.

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Loader", - "doc": null, - "owner": "syncRequire" - }, - "protected": false, - "tagname": "method", - "href": "Loader.html#Ext-method-syncRequire", - "shortDoc": "Synchronously loads all classes by the given names and all their direct dependencies;\noptionally executes the given c...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Loader.js", - "private": false, - "params": [ - { - "type": "String/[String]", - "optional": false, - "doc": "

Can either be a string or an array of string

\n", - "name": "expressions" - }, - { - "type": "Function", - "optional": false, - "doc": "

(Optional) The callback function

\n", - "name": "fn" - }, - { - "type": "Object", - "optional": false, - "doc": "

(Optional) The execution scope (this) of the callback function

\n", - "name": "scope" - }, - { - "type": "String/[String]", - "optional": false, - "doc": "

(Optional) Classes to be excluded, useful when being used with expressions

\n", - "name": "excludes" - } - ], - "name": "syncRequire", - "owner": "Ext", - "doc": "

Synchronously loads all classes by the given names and all their direct dependencies;\noptionally executes the given callback function when finishes, within the optional scope.

\n\n

Ext.syncRequire is alias for Ext.Loader.syncRequire for convenience.

\n", - "linenr": 948, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Loader.html" - }, - { - "deprecated": null, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "toArray" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-toArray", - "shortDoc": "Converts any iterable (numeric indices and a length property) into a true array. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

the iterable object to be turned into a true Array.

\n", - "name": "iterable" - }, - { - "type": "Number", - "optional": false, - "doc": "

(Optional) a zero-based index that specifies the start of extraction. Defaults to 0

\n", - "name": "start" - }, - { - "type": "Number", - "optional": false, - "doc": "

(Optional) a zero-based index that specifies the end of extraction. Defaults to the last\nindex of the iterable value

\n", - "name": "end" - } - ], - "name": "toArray", - "owner": "Ext", - "doc": "

Converts any iterable (numeric indices and a length property) into a true array.

\n\n
function test() {\n    var args = Ext.Array.toArray(arguments),\n        fromSecondToLastArgs = Ext.Array.toArray(arguments, 1);\n\n    alert(args.join(' '));\n    alert(fromSecondToLastArgs.join(' '));\n}\n\ntest('just', 'testing', 'here'); // alerts 'just testing here';\n                                 // alerts 'testing here';\n\nExt.Array.toArray(document.getElementsByTagName('div')); // will convert the NodeList into an array\nExt.Array.toArray('splitted'); // returns ['s', 'p', 'l', 'i', 't', 't', 'e', 'd']\nExt.Array.toArray('splitted', 0, 3); // returns ['s', 'p', 'l', 'i']\n
\n\n

Ext.toArray is alias for Ext.Array.toArray

\n", - "linenr": 1061, - "return": { - "type": "Array", - "doc": "

array

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Will be removed in the next major version

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-toSentence", - "shortDoc": "Turns an array into a sentence, joined by a specified connector - e.g.:\nExt.toSentence(['Adama', 'Tigh', 'Roslin']); ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "

The array to create a sentence from

\n", - "name": "items" - }, - { - "type": "String", - "optional": false, - "doc": "

The string to use to connect the last two words. Usually 'and' or 'or' - defaults to 'and'.

\n", - "name": "connector" - } - ], - "name": "toSentence", - "owner": "Ext", - "doc": "

Turns an array into a sentence, joined by a specified connector - e.g.:\nExt.toSentence(['Adama', 'Tigh', 'Roslin']); //'Adama, Tigh and Roslin'\nExt.toSentence(['Adama', 'Tigh', 'Roslin'], 'or'); //'Adama, Tigh or Roslin'

\n", - "linenr": 917, - "return": { - "type": "String", - "doc": "

The sentence string

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use typeOf instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext", - "doc": null, - "owner": "typeOf" - }, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-type", - "shortDoc": "Old alias to typeOf\n\nReturns the type of the given variable in string format. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "\n", - "name": "value" - } - ], - "name": "type", - "owner": "Ext", - "doc": "

Old alias to typeOf

\n\n

Returns the type of the given variable in string format. List of possible values are:

\n\n\n\n", - "linenr": 576, - "return": { - "type": "String", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-typeOf", - "shortDoc": "Returns the type of the given variable in string format. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "\n", - "name": "value" - } - ], - "name": "typeOf", - "owner": "Ext", - "doc": "

Returns the type of the given variable in string format. List of possible values are:

\n\n\n\n", - "linenr": 258, - "return": { - "type": "String", - "doc": "\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Array.unique instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": { - "tagname": "alias", - "cls": "Ext.Array", - "doc": null, - "owner": "unique" - }, - "protected": false, - "tagname": "method", - "href": "Array2.html#Ext-method-unique", - "shortDoc": "Old alias to Ext.Array.unique\n\nReturns a new array with unique items ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Array.js", - "private": false, - "params": [ - { - "type": "Array", - "optional": false, - "doc": "\n", - "name": "array" - } - ], - "name": "unique", - "owner": "Ext", - "doc": "

Old alias to Ext.Array.unique

\n\n

Returns a new array with unique items

\n", - "linenr": 1043, - "return": { - "type": "Array", - "doc": "

results

\n" - }, - "html_filename": "Array2.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-urlAppend", - "shortDoc": "Appends content to the query string of a URL, handling logic for whether to place\na question mark or ampersand. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

The URL to append to.

\n", - "name": "url" - }, - { - "type": "String", - "optional": false, - "doc": "

The content to append to the URL.

\n", - "name": "s" - } - ], - "name": "urlAppend", - "owner": "Ext", - "doc": "

Appends content to the query string of a URL, handling logic for whether to place\na question mark or ampersand.

\n", - "linenr": 210, - "return": { - "type": "void", - "doc": "

(String) The resulting URL

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Object.fromQueryString instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Object.html#Ext-method-urlDecode", - "shortDoc": "A convenient alias method for Ext.Object.fromQueryString ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Object.js", - "private": false, - "params": [ - - ], - "name": "urlDecode", - "owner": "Ext", - "doc": "

A convenient alias method for Ext.Object.fromQueryString

\n", - "linenr": 518, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Object.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use Ext.Object.toQueryString instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Object.html#Ext-method-urlEncode", - "shortDoc": "A convenient alias method for Ext.Object.toQueryString ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/lang/Object.js", - "private": false, - "params": [ - - ], - "name": "urlEncode", - "owner": "Ext", - "doc": "

A convenient alias method for Ext.Object.toQueryString

\n", - "linenr": 498, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Object.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Use valueFrom instead

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-value", - "shortDoc": "Utility method for returning a default value if the passed value is empty. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

The value to return if the original value is empty

\n", - "name": "defaultValue" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) true to allow zero length strings to qualify as non-empty (defaults to false)

\n", - "name": "allowBlank" - } - ], - "name": "value", - "owner": "Ext", - "doc": "

Utility method for returning a default value if the passed value is empty.

\n\n\n

The value is deemed to be empty if it is

\n\n", - "linenr": 532, - "return": { - "type": "Mixed", - "doc": "

value, if non-empty, else defaultValue

\n" - }, - "html_filename": "Ext-more.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext.html#Ext-method-valueFrom", - "shortDoc": "Returns the given value itself if it's not empty, as described in isEmpty; returns the default\nvalue (second argument...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The value to test

\n", - "name": "value" - }, - { - "type": "Mixed", - "optional": false, - "doc": "

The value to return if the original value is empty

\n", - "name": "defaultValue" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) true to allow zero length strings to qualify as non-empty (defaults to false)

\n", - "name": "allowBlank" - } - ], - "name": "valueFrom", - "owner": "Ext", - "doc": "

Returns the given value itself if it's not empty, as described in isEmpty; returns the default\nvalue (second argument) otherwise.

\n", - "linenr": 245, - "return": { - "type": "Mixed", - "doc": "

value, if non-empty, else defaultValue

\n" - }, - "html_filename": "Ext.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "ClassManager.html#Ext-method-widget", - "shortDoc": "Convenient shorthand to create a widget by its xtype, also see Ext.ClassManager.instantiateByAlias\n\nvar button = Ext....", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/ClassManager.js", - "private": false, - "params": [ - { - "type": "String", - "optional": false, - "doc": "

xtype of the widget to create.

\n", - "name": "name" - } - ], - "name": "widget", - "owner": "Ext", - "doc": "

Convenient shorthand to create a widget by its xtype, also see Ext.ClassManager.instantiateByAlias

\n\n
var button = Ext.widget('button'); // Equivalent to Ext.create('widget.button')\nvar panel = Ext.widget('panel'); // Equivalent to Ext.create('widget.panel')\n
\n", - "linenr": 1026, - "return": { - "type": "Object", - "doc": "

widget instance

\n" - }, - "html_filename": "ClassManager.html" - }, - { - "deprecated": { - "version": "4.0.0", - "text": "

Will be removed in the next major version

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Ext-more.html#Ext-method-zip", - "shortDoc": "Zips N sets together. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "params": [ - { - "type": "Arrays|NodeLists", - "optional": false, - "doc": "

This argument may be repeated. Array(s) to contribute values.

\n", - "name": "arr" - }, - { - "type": "Function", - "optional": true, - "doc": "

(optional) The last item in the argument list. This will drive how the items are zipped together.

\n", - "name": "zipper" - } - ], - "name": "zip", - "owner": "Ext", - "doc": "

Zips N sets together.

\n\n\n
// Example 1:\nExt.zip([1,2,3],[4,5,6]); // [[1,4],[2,5],[3,6]]\n// Example 2:\nExt.zip(\n    [ \"+\", \"-\", \"+\"],\n    [  12,  10,  22],\n    [  43,  15,  96],\n    function(a, b, c){\n        return \"$\" + a + \"\" + b + \".\" + c\n    }\n); // [\"$+12.43\", \"$-10.15\", \"$+22.96\"]\n
\n\n", - "linenr": 877, - "return": { - "type": "Array", - "doc": "

The zipped set.

\n" - }, - "html_filename": "Ext-more.html" - } - ], - "property": [ - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-BLANK_IMAGE_URL", - "shortDoc": "URL to a 1x1 transparent gif image used by Ext to create inline icons with CSS background images. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "BLANK_IMAGE_URL", - "owner": "Ext", - "doc": "

URL to a 1x1 transparent gif image used by Ext to create inline icons with CSS background images.\nIn older versions of IE, this defaults to \"http://sencha.com/s.gif\" and you should change this to a URL on your server.\nFor other browsers it uses an inline data URL.

\n", - "linenr": 524, - "html_filename": "Ext-more.html" - }, - { - "type": "String", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-SSL_SECURE_URL", - "shortDoc": "URL to a blank file used by Ext when in secure mode for iframe src and onReady src to prevent\nthe IE insecure content...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "SSL_SECURE_URL", - "owner": "Ext", - "doc": "

URL to a blank file used by Ext when in secure mode for iframe src and onReady src to prevent\nthe IE insecure content warning ('about:blank', except for IE in secure mode, which is 'javascript:\"\"').

\n", - "linenr": 273, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-USE_NATIVE_JSON", - "shortDoc": "Indicates whether to use native browser parsing for JSON methods. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "USE_NATIVE_JSON", - "owner": "Ext", - "doc": "

Indicates whether to use native browser parsing for JSON methods.\nThis option is ignored if the browser does not support native JSON methods.\nNote: Native JSON methods will not work with objects that have functions.\nAlso, property names must be quoted, otherwise the data will not parse. (Defaults to false)

\n", - "linenr": 301, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-enableFx", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "enableFx", - "owner": "Ext", - "doc": "

True if the Ext.fx.Anim Class is available

\n", - "linenr": 280, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-enableGarbageCollector", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "enableGarbageCollector", - "owner": "Ext", - "doc": "

True to automatically uncache orphaned Ext.core.Elements periodically (defaults to true)

\n", - "linenr": 45, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-enableListenerCollection", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "enableListenerCollection", - "owner": "Ext", - "doc": "

True to automatically purge event listeners during garbageCollection (defaults to true).

\n", - "linenr": 51, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-enableNestedListenerRemoval", - "shortDoc": "EXPERIMENTAL - True to cascade listener removal to child elements when an element is removed. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "enableNestedListenerRemoval", - "owner": "Ext", - "doc": "

EXPERIMENTAL - True to cascade listener removal to child elements when an element is removed.\nCurrently not optimized for performance.

\n", - "linenr": 294, - "html_filename": "Ext-more.html" - }, - { - "type": "Array", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext.html#Ext-property-enumerables", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "name": "enumerables", - "owner": "Ext", - "doc": "

An array containing extra enumerables for old browsers

\n", - "linenr": 28, - "html_filename": "Ext.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isChrome", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isChrome", - "owner": "Ext", - "doc": "

True if the detected browser is Chrome.

\n", - "linenr": 404, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isFF3_0", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isFF3_0", - "owner": "Ext", - "doc": "

True if the detected browser uses FireFox 3.0

\n", - "linenr": 482, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isFF3_5", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isFF3_5", - "owner": "Ext", - "doc": "

True if the detected browser uses FireFox 3.5

\n", - "linenr": 488, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isFF3_6", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isFF3_6", - "owner": "Ext", - "doc": "

True if the detected browser uses FireFox 3.6

\n", - "linenr": 494, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isGecko", - "shortDoc": "True if the detected browser uses the Gecko layout engine (e.g. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isGecko", - "owner": "Ext", - "doc": "

True if the detected browser uses the Gecko layout engine (e.g. Mozilla, Firefox).

\n", - "linenr": 464, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isGecko3", - "shortDoc": "True if the detected browser uses a Gecko 1.9+ layout engine (e.g. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isGecko3", - "owner": "Ext", - "doc": "

True if the detected browser uses a Gecko 1.9+ layout engine (e.g. Firefox 3.x).

\n", - "linenr": 470, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isGecko4", - "shortDoc": "True if the detected browser uses a Gecko 2.0+ layout engine (e.g. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isGecko4", - "owner": "Ext", - "doc": "

True if the detected browser uses a Gecko 2.0+ layout engine (e.g. Firefox 4.x).

\n", - "linenr": 476, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isIE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isIE", - "owner": "Ext", - "doc": "

True if the detected browser is Internet Explorer.

\n", - "linenr": 434, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isIE6", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isIE6", - "owner": "Ext", - "doc": "

True if the detected browser is Internet Explorer 6.x.

\n", - "linenr": 440, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isIE7", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isIE7", - "owner": "Ext", - "doc": "

True if the detected browser is Internet Explorer 7.x.

\n", - "linenr": 446, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isIE8", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isIE8", - "owner": "Ext", - "doc": "

True if the detected browser is Internet Explorer 8.x.

\n", - "linenr": 452, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isIE9", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isIE9", - "owner": "Ext", - "doc": "

True if the detected browser is Internet Explorer 9.x.

\n", - "linenr": 458, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isLinux", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isLinux", - "owner": "Ext", - "doc": "

True if the detected platform is Linux.

\n", - "linenr": 500, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isMac", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isMac", - "owner": "Ext", - "doc": "

True if the detected platform is Mac OS.

\n", - "linenr": 512, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isOpera", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isOpera", - "owner": "Ext", - "doc": "

True if the detected browser is Opera.

\n", - "linenr": 386, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isOpera10_5", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isOpera10_5", - "owner": "Ext", - "doc": "

True if the detected browser is Opera 10.5x.

\n", - "linenr": 392, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isReady", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isReady", - "owner": "Ext", - "doc": "

True when the document is fully initialized and ready for action

\n", - "linenr": 39, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isSafari", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isSafari", - "owner": "Ext", - "doc": "

True if the detected browser is Safari.

\n", - "linenr": 410, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isSafari2", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isSafari2", - "owner": "Ext", - "doc": "

True if the detected browser is Safari 2.x.

\n", - "linenr": 428, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isSafari3", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isSafari3", - "owner": "Ext", - "doc": "

True if the detected browser is Safari 3.x.

\n", - "linenr": 416, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isSafari4", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isSafari4", - "owner": "Ext", - "doc": "

True if the detected browser is Safari 4.x.

\n", - "linenr": 422, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isWebKit", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isWebKit", - "owner": "Ext", - "doc": "

True if the detected browser uses WebKit.

\n", - "linenr": 398, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-isWindows", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "isWindows", - "owner": "Ext", - "doc": "

True if the detected platform is Windows.

\n", - "linenr": 506, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-scopeResetCSS", - "shortDoc": "True to scope the reset CSS to be just applied to Ext components. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "scopeResetCSS", - "owner": "Ext", - "doc": "

True to scope the reset CSS to be just applied to Ext components. Note that this wraps root containers\nwith an additional element. Also remember that when you turn on this option, you have to use ext-all-scoped {\nunless you use the bootstrap.js to load your javascript, in which case it will be handled for you.

\n", - "linenr": 286, - "html_filename": "Ext-more.html" - }, - { - "type": "Boolean", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-useShims", - "shortDoc": "By default, Ext intelligently decides whether floating elements should be shimmed. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "useShims", - "owner": "Ext", - "doc": "

By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,\nyou may want to set this to true.

\n", - "linenr": 939, - "html_filename": "Ext-more.html" - }, - { - "type": "Float", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "Ext-more.html#Ext-property-webKitVersion", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext-more.js", - "private": false, - "name": "webKitVersion", - "owner": "Ext", - "doc": "

The current version of WebKit (-1 if the browser does not use WebKit).

\n", - "linenr": 518, - "html_filename": "Ext-more.html" - } - ], - "cssVar": [ - - ], - "cssMixin": [ - - ], - "event": [ - - ] - }, - "singleton": true, - "alias": null, - "superclasses": [ - - ], - "protected": false, - "tagname": "class", - "mixins": [ - - ], - "href": "Ext.html#Ext", - "subclasses": [ - - ], - "static": false, - "author": null, - "component": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/Ext.js", - "private": false, - "alternateClassNames": [ - - ], - "name": "Ext", - "doc": "

The Ext namespace (global object) encapsulates all classes, singletons, and utility methods provided by Sencha's libraries.

\n Most user interface Components are at a lower level of nesting in the namespace, but many common utility functions are provided\n as direct properties of the Ext namespace.

\n\n

Also many frequently used methods from other classes are provided as shortcuts within the Ext namespace.\n For example Ext.getCmp aliases Ext.ComponentManager.get.

\n\n

Many applications are initiated with Ext.onReady which is called once the DOM is ready.\n This ensures all scripts have been loaded, preventing dependency issues. For example

\n\n
 Ext.onReady(function(){\n     new Ext.Component({\n         renderTo: document.body,\n         html: 'DOM ready!'\n     });\n });\n
\n\n

For more information about how to use the Ext classes, see

\n\n\n\n", - "mixedInto": [ - - ], - "linenr": 1, - "xtypes": [ - - ], - "html_filename": "Ext.html", - "extends": null -}); \ No newline at end of file +Ext.data.JsonP.Ext({"tagname":"class","html":"

Files

The Ext namespace (global object) encapsulates all classes, singletons, and utility methods provided by Sencha's libraries.

\n Most user interface Components are at a lower level of nesting in the namespace, but many common utility functions are provided\n as direct properties of the Ext namespace.

\n\n

Also many frequently used methods from other classes are provided as shortcuts within the Ext namespace.\n For example Ext.getCmp aliases Ext.ComponentManager.get.

\n\n

Many applications are initiated with Ext.onReady which is called once the DOM is ready.\n This ensures all scripts have been loaded, preventing dependency issues. For example

\n\n
 Ext.onReady(function(){\n     new Ext.Component({\n         renderTo: document.body,\n         html: 'DOM ready!'\n     });\n });\n
\n\n

For more information about how to use the Ext classes, see

\n\n\n\n
Defined By

Properties

URL to a 1x1 transparent gif image used by Ext to create inline icons with CSS background images. ...

URL to a 1x1 transparent gif image used by Ext to create inline icons with CSS background images.\nIn older versions of IE, this defaults to \"http://sencha.com/s.gif\" and you should change this to a URL on your server.\nFor other browsers it uses an inline data URL.

\n
URL to a blank file used by Ext when in secure mode for iframe src and onReady src to prevent\nthe IE insecure content...

URL to a blank file used by Ext when in secure mode for iframe src and onReady src to prevent\nthe IE insecure content warning ('about:blank', except for IE in secure mode, which is 'javascript:\"\"').

\n
Indicates whether to use native browser parsing for JSON methods. ...

Indicates whether to use native browser parsing for JSON methods.\nThis option is ignored if the browser does not support native JSON methods.\nNote: Native JSON methods will not work with objects that have functions.\nAlso, property names must be quoted, otherwise the data will not parse. (Defaults to false)

\n
 

Global convenient instance of Ext.env.Browser.

\n

Global convenient instance of Ext.env.Browser.

\n
 

The current version of Chrome (0 if the browser is not Chrome).

\n

The current version of Chrome (0 if the browser is not Chrome).

\n
 

True if the Ext.fx.Anim Class is available

\n

True if the Ext.fx.Anim Class is available

\n
 

True to automatically uncache orphaned Ext.Elements periodically

\n

True to automatically uncache orphaned Ext.Elements periodically

\n
 

True to automatically purge event listeners during garbageCollection.

\n

True to automatically purge event listeners during garbageCollection.

\n
EXPERIMENTAL - True to cascade listener removal to child elements when an element is removed. ...

EXPERIMENTAL - True to cascade listener removal to child elements when an element is removed.\nCurrently not optimized for performance.

\n
 

An array containing extra enumerables for old browsers

\n

An array containing extra enumerables for old browsers

\n
 

Global convenient instance of Ext.env.FeatureDetector.

\n

Global convenient instance of Ext.env.FeatureDetector.

\n
 

The current version of Firefox (0 if the browser is not Firefox).

\n

The current version of Firefox (0 if the browser is not Firefox).

\n
The current version of IE (0 if the browser is not IE). ...

The current version of IE (0 if the browser is not IE). This does not account\nfor the documentMode of the current page, which is factored into isIE7,\nisIE8 and isIE9. Thus this is not always true:

\n\n
 Ext.isIE8 == (Ext.ieVersion == 8)\n
\n
 

True if the detected browser is Chrome.

\n

True if the detected browser is Chrome.

\n
 

True if the detected browser uses FireFox 3.0

\n

True if the detected browser uses FireFox 3.0

\n
 

True if the detected browser uses FireFox 3.5

\n

True if the detected browser uses FireFox 3.5

\n
 

True if the detected browser uses FireFox 3.6

\n

True if the detected browser uses FireFox 3.6

\n
 

True if the detected browser uses FireFox 4

\n

True if the detected browser uses FireFox 4

\n
 

True if the detected browser uses FireFox 5

\n

True if the detected browser uses FireFox 5

\n
True if the detected browser uses the Gecko layout engine (e.g. ...

True if the detected browser uses the Gecko layout engine (e.g. Mozilla, Firefox).

\n
True if the detected browser uses a Gecko 1.9+ layout engine (e.g. ...

True if the detected browser uses a Gecko 1.9+ layout engine (e.g. Firefox 3.x).

\n
True if the detected browser uses a Gecko 2.0+ layout engine (e.g. ...

True if the detected browser uses a Gecko 2.0+ layout engine (e.g. Firefox 4.x).

\n
True if the detected browser uses a Gecko 5.0+ layout engine (e.g. ...

True if the detected browser uses a Gecko 5.0+ layout engine (e.g. Firefox 5.x).

\n
 

True if the detected browser is Internet Explorer.

\n

True if the detected browser is Internet Explorer.

\n
 

True if the detected browser is Internet Explorer 6.x.

\n

True if the detected browser is Internet Explorer 6.x.

\n
 

True if the detected browser is Internet Explorer 7.x.

\n

True if the detected browser is Internet Explorer 7.x.

\n
 

True if the detected browser is Internet Explorer 8.x.

\n

True if the detected browser is Internet Explorer 8.x.

\n
 

True if the detected browser is Internet Explorer 9.x.

\n

True if the detected browser is Internet Explorer 9.x.

\n
 

True if the detected platform is Linux.

\n

True if the detected platform is Linux.

\n
 

True if the detected platform is Mac OS.

\n

True if the detected platform is Mac OS.

\n
 

True if the detected browser is Opera.

\n

True if the detected browser is Opera.

\n
 

True if the detected browser is Opera 10.5x.

\n

True if the detected browser is Opera 10.5x.

\n
 

True when the document is fully initialized and ready for action

\n

True when the document is fully initialized and ready for action

\n
 

True if the detected browser is Safari.

\n

True if the detected browser is Safari.

\n
 

True if the detected browser is Safari 2.x.

\n

True if the detected browser is Safari 2.x.

\n
 

True if the detected browser is Safari 3.x.

\n

True if the detected browser is Safari 3.x.

\n
 

True if the detected browser is Safari 4.x.

\n

True if the detected browser is Safari 4.x.

\n
 

True if the detected browser is Safari 5.x.

\n

True if the detected browser is Safari 5.x.

\n
 

True if the page is running over SSL

\n

True if the page is running over SSL

\n
 

True if the detected browser uses WebKit.

\n

True if the detected browser uses WebKit.

\n
 

True if the detected platform is Windows.

\n

True if the detected platform is Windows.

\n
Logs a message. ...

Logs a message. If a console is present it will be used. On Opera, the method\n\"opera.postError\" is called. In other cases, the message is logged to an array\n\"Ext.log.out\". An attached debugger can watch this array and view the log. The\nlog buffer is limited to a maximum of \"Ext.log.max\" entries (defaults to 250).\nThe Ext.log.out array can also be written to a popup window by entering the\nfollowing in the URL bar (a \"bookmarklet\"):

\n\n

javascript:void(Ext.log.show());

\n\n

If additional parameters are passed, they are joined and appended to the message.\nA technique for tracing entry and exit of a function is this:

\n\n
 function foo () {\n     Ext.log({ indent: 1 }, '>> foo');\n\n     // log statements in here or methods called from here will be indented\n     // by one step\n\n     Ext.log({ outdent: 1 }, '<< foo');\n }\n
\n\n

This method does nothing in a release build.

\n
 

The current version of Opera (0 if the browser is not Opera).

\n

The current version of Opera (0 if the browser is not Opera).

\n
 

Global convenient instance of Ext.env.OS.

\n

Global convenient instance of Ext.env.OS.

\n
 

The current version of Safari (0 if the browser is not Safari).

\n

The current version of Safari (0 if the browser is not Safari).

\n
True to scope the reset CSS to be just applied to Ext components. ...

True to scope the reset CSS to be just applied to Ext components. Note that this wraps root containers\nwith an additional element. Also remember that when you turn on this option, you have to use ext-all-scoped {\nunless you use the bootstrap.js to load your javascript, in which case it will be handled for you.

\n
By default, Ext intelligently decides whether floating elements should be shimmed. ...

By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,\nyou may want to set this to true.

\n
 

The current version of WebKit (0 if the browser does not use WebKit).

\n

The current version of WebKit (0 if the browser does not use WebKit).

\n
Defined By

Methods

Applies event listeners to elements by selectors when the document is ready. ...

Applies event listeners to elements by selectors when the document is ready.\nThe event name is specified with an @ suffix.

\n\n
Ext.addBehaviors({\n    // add a listener for click on all anchors in element with id foo\n    '#foo a@click' : function(e, t){\n        // do something\n    },\n\n    // add the same listener to multiple selectors (separated by comma BEFORE the @)\n    '#foo a, #bar span.some-class@mouseover' : function(){\n        // do something\n    }\n});\n
\n\n

Parameters

  • obj : Object

    The list of behaviors to apply

    \n
Loads Ext.app.Application class and starts it up with given configuration after the page is ready. ...

Loads Ext.app.Application class and starts it up with given configuration after the page is ready.

\n\n

See Ext.app.Application for details.

\n

Parameters

( Object object, Object config, Object defaults ) : Object
Copies all the properties of config to the specified object. ...

Copies all the properties of config to the specified object.\nNote that if recursive merging and cloning without referencing the original objects / arrays is needed, use\nExt.Object.merge instead.

\n

Parameters

  • object : Object

    The receiver of the properties

    \n
  • config : Object

    The source of the properties

    \n
  • defaults : Object

    A different object that will also be applied for default values

    \n

Returns

Copies all the properties of config to object if they don't already exist. ...

Copies all the properties of config to object if they don't already exist.

\n

Parameters

  • object : Object

    The receiver of the properties

    \n
  • config : Object

    The source of the properties

    \n

Returns

( Function fn, [Object scope], [Array args], [Boolean/Number appendArgs] ) : Function
Create a new function from the provided fn, change this to the provided scope, optionally\noverrides arguments for the...

Create a new function from the provided fn, change this to the provided scope, optionally\noverrides arguments for the call. (Defaults to the arguments passed by the caller)

\n\n

Ext.bind is alias for Ext.Function.bind

\n

Parameters

  • fn : Function

    The function to delegate.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed.\nIf omitted, defaults to the browser window.

    \n
  • args : Array (optional)

    Overrides arguments for the call. (Defaults to the arguments passed by the caller)

    \n
  • appendArgs : Boolean/Number (optional)

    if True args are appended to call args instead of overriding,\nif a number the args are inserted at the specified position

    \n

Returns

( Function callback, [Object scope], [Array args], [Number delay] )
Execute a callback function in a particular scope. ...

Execute a callback function in a particular scope. If no function is passed the call is ignored.

\n\n

For example, these lines are equivalent:

\n\n
Ext.callback(myFunc, this, [arg1, arg2]);\nExt.isFunction(myFunc) && myFunc.apply(this, [arg1, arg2]);\n
\n

Parameters

  • callback : Function

    The callback to execute

    \n
  • scope : Object (optional)

    The scope to execute in

    \n
  • args : Array (optional)

    The arguments to pass to the function

    \n
  • delay : Number (optional)

    Pass a number to delay the call by a number of milliseconds.

    \n
( Array array ) : Arraydeprecated
Old alias to Ext.Array.clean\n\nFilter through an array and remove empty item as defined in Ext.isEmpty\n\nSee Ext.Array....

Old alias to Ext.Array.clean

\n\n

Filter through an array and remove empty item as defined in Ext.isEmpty

\n\n

See Ext.Array.filter

\n

This method has been deprecated since 4.0.0

Use Ext.Array.clean instead

\n

Parameters

Returns

Clone almost any type of variable including array, object, DOM nodes and Date without keeping the old reference ...

Clone almost any type of variable including array, object, DOM nodes and Date without keeping the old reference

\n

Parameters

  • item : Object

    The variable to clone

    \n

Returns

( Object dest, Object source, String/String[] names, [Boolean usePrototypeKeys] ) : Object
Copies a set of named properties fom the source object to the destination object. ...

Copies a set of named properties fom the source object to the destination object.

\n\n

Example:

\n\n
ImageComponent = Ext.extend(Ext.Component, {\n    initComponent: function() {\n        this.autoEl = { tag: 'img' };\n        MyComponent.superclass.initComponent.apply(this, arguments);\n        this.initialBox = Ext.copyTo({}, this.initialConfig, 'x,y,width,height');\n    }\n});\n
\n\n

Important note: To borrow class prototype methods, use Ext.Base.borrow instead.

\n

Parameters

  • dest : Object

    The destination object.

    \n
  • source : Object

    The source object.

    \n
  • names : String/String[]

    Either an Array of property names, or a comma-delimited list\nof property names to copy.

    \n
  • usePrototypeKeys : Boolean (optional)

    Defaults to false. Pass true to copy keys off of the prototype as well as the instance.

    \n

Returns

Instantiate a class by either full name, alias or alternate name. ...

Instantiate a class by either full name, alias or alternate name.

\n\n

If Ext.Loader is enabled and the class has not been defined yet, it will\nattempt to load the class via synchronous loading.

\n\n

For example, all these three lines return the same result:

\n\n
// alias\nvar window = Ext.ClassManager.instantiate('widget.window', { width: 600, height: 800, ... });\n\n// alternate name\nvar window = Ext.ClassManager.instantiate('Ext.Window', { width: 600, height: 800, ... });\n\n// full class name\nvar window = Ext.ClassManager.instantiate('Ext.window.Window', { width: 600, height: 800, ... });\n
\n\n

Ext.create is alias for Ext.ClassManager.instantiate.

\n

Parameters

  • name : String
    \n
  • args : Object...

    Additional arguments after the name will be passed to the class' constructor.

    \n

Returns

Instantiate a class by its alias. ...

Instantiate a class by its alias.

\n\n

If Ext.Loader is enabled and the class has not been defined yet, it will\nattempt to load the class via synchronous loading.

\n\n
var window = Ext.ClassManager.instantiateByAlias('widget.window', { width: 600, height: 800, ... });\n
\n\n

Ext.createByAlias is alias for Ext.ClassManager.instantiateByAlias.

\n

Parameters

  • alias : String
    \n
  • args : Object...

    Additional arguments after the alias will be passed to the\nclass constructor.

    \n

Returns

( String name, Object... args ) : Objectdeprecated
Old name for widget. ...

Old name for widget.

\n\n

Convenient shorthand to create a widget by its xtype, also see Ext.ClassManager.instantiateByAlias

\n\n
var button = Ext.widget('button'); // Equivalent to Ext.create('widget.button')\nvar panel = Ext.widget('panel'); // Equivalent to Ext.create('widget.panel')\n
\n

This method has been deprecated since 4.0.0

Use widget instead.

\n

Parameters

  • name : String

    xtype of the widget to create.

    \n\n
  • args : Object...

    arguments for the widget constructor.

    \n\n

Returns

Shorthand for Ext.JSON.decode\n\nDecodes (parses) a JSON string to an object. ...

Shorthand for Ext.JSON.decode

\n\n

Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError unless the safe option is set.

\n

Parameters

  • json : String

    The JSON string

    \n
  • safe : Boolean (optional)

    Whether to return null or throw an exception if the JSON is invalid.

    \n

Returns

( Function fn, Number millis, [Object scope], [Array args], [Boolean/Number appendArgs] ) : Number
Calls this function after the number of millseconds specified, optionally in a specific scope. ...

Calls this function after the number of millseconds specified, optionally in a specific scope. Example usage:

\n\n
var sayHi = function(name){\n    alert('Hi, ' + name);\n}\n\n// executes immediately:\nsayHi('Fred');\n\n// executes after 2 seconds:\nExt.Function.defer(sayHi, 2000, this, ['Fred']);\n\n// this syntax is sometimes useful for deferring\n// execution of an anonymous function:\nExt.Function.defer(function(){\n    alert('Anonymous');\n}, 100);\n
\n\n

Ext.defer is alias for Ext.Function.defer

\n

Parameters

  • fn : Function

    The function to defer.

    \n
  • millis : Number

    The number of milliseconds for the setTimeout call\n(if less than or equal to 0 the function is executed immediately)

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed.\nIf omitted, defaults to the browser window.

    \n
  • args : Array (optional)

    Overrides arguments for the call. (Defaults to the arguments passed by the caller)

    \n
  • appendArgs : Boolean/Number (optional)

    if True args are appended to call args instead of overriding,\nif a number the args are inserted at the specified position

    \n

Returns

  • Number

    The timeout id that can be used with clearTimeout

    \n
( String className, Object data, [Function createdFn] ) : Ext.Base
Defines a class. ...

Defines a class.

\n\n

Ext.define and Ext.ClassManager.create are almost aliases\nof each other, with the only exception that Ext.define allows definition of overrides.\nTo avoid trouble, always use Ext.define.

\n\n
Ext.define('My.awesome.Class', {\n    someProperty: 'something',\n    someMethod: function() { ... }\n    ...\n\n}, function() {\n    alert('Created!');\n    alert(this === My.awesome.Class); // alerts true\n\n    var myInstance = new this();\n});\n
\n

Parameters

  • className : String

    The class name to create in string dot-namespaced format, for example:\nMy.very.awesome.Class, FeedViewer.plugin.CoolPager. It is highly recommended to follow this simple convention:

    \n\n
      \n
    • The root and the class name are 'CamelCased'
    • \n
    • Everything else is lower-cased
    • \n
    \n\n
  • data : Object

    The key-value pairs of properties to apply to this class. Property names can be of any valid\nstrings, except those in the reserved list below:

    \n\n\n\n
  • createdFn : Function (optional)

    callback to execute after the class is created, the execution scope of which\n(this) will be the newly created class itself.

    \n

Returns

Attempts to destroy any objects passed to it by removing all event listeners, removing them from the\nDOM (if applicab...

Attempts to destroy any objects passed to it by removing all event listeners, removing them from the\nDOM (if applicable) and calling their destroy functions (if available). This method is primarily\nintended for arguments of type Ext.Element and Ext.Component, but any subclass of\nExt.util.Observable can be passed in. Any number of elements and/or components can be\npassed into this function in a single call as separate arguments.

\n

Parameters

Attempts to destroy and then remove a set of named properties of the passed object. ...

Attempts to destroy and then remove a set of named properties of the passed object.

\n

Parameters

  • o : Object

    The object (most likely a Component) who's properties you wish to destroy.

    \n
  • args : String...

    One or more names of the properties to destroy and remove from the object.

    \n
( Array/NodeList/Object iterable, Function fn, [Object scope], [Boolean reverse] ) : Boolean
Iterates an array or an iterable value and invoke the given callback function for each item. ...

Iterates an array or an iterable value and invoke the given callback function for each item.

\n\n
var countries = ['Vietnam', 'Singapore', 'United States', 'Russia'];\n\nExt.Array.each(countries, function(name, index, countriesItSelf) {\n    console.log(name);\n});\n\nvar sum = function() {\n    var sum = 0;\n\n    Ext.Array.each(arguments, function(value) {\n        sum += value;\n    });\n\n    return sum;\n};\n\nsum(1, 2, 3); // returns 6\n
\n\n

The iteration can be stopped by returning false in the function callback.

\n\n
Ext.Array.each(countries, function(name, index, countriesItSelf) {\n    if (name === 'Singapore') {\n        return false; // break here\n    }\n});\n
\n\n

Ext.each is alias for Ext.Array.each

\n

Parameters

  • iterable : Array/NodeList/Object

    The value to be iterated. If this\nargument is not iterable, the callback function is called once.

    \n
  • fn : Function

    The callback function. If it returns false, the iteration stops and this method returns\nthe current index.

    \n

    Parameters

    • item : Object

      The item at the current index in the passed array

      \n
    • index : Number

      The current index within the array

      \n
    • allItems : Array

      The array itself which was passed as the first argument

      \n

    Returns

    • Boolean

      Return false to stop iteration.

      \n
  • scope : Object (optional)

    The scope (this reference) in which the specified function is executed.

    \n
  • reverse : Boolean (optional)

    Reverse the iteration order (loop from the end to the beginning)\nDefaults false

    \n

Returns

  • Boolean

    See description for the fn parameter.

    \n
A reusable empty function ...

A reusable empty function

\n
Shorthand for Ext.JSON.encode\n\nEncodes an Object, Array or other value ...

Shorthand for Ext.JSON.encode

\n\n

Encodes an Object, Array or other value

\n

Parameters

  • o : Object

    The variable to encode

    \n

Returns

Escapes the passed string for use in a regular expression ...

Escapes the passed string for use in a regular expression

\n

This method has been deprecated since 4.0.0

Use Ext.String.escapeRegex instead

\n

Parameters

Returns

Explicitly exclude files from being loaded. ...

Explicitly exclude files from being loaded. Useful when used in conjunction with a broad include expression.\nCan be chained with more require and exclude methods, e.g.:

\n\n
Ext.exclude('Ext.data.*').require('*');\n\nExt.exclude('widget.button*').require('widget.*');\n
\n\n

Ext.exclude is alias for Ext.Loader.exclude for convenience.

\n

Parameters

Returns

  • Object

    object contains require method for chaining

    \n\n
( Function superclass, Object overrides ) : Functiondeprecated
This method deprecated. ...

This method deprecated. Use Ext.define instead.

\n

This method has been deprecated since 4.0.0

Use Ext.define instead

\n

Parameters

Returns

  • Function

    The subclass constructor from the overrides parameter, or a generated one if not provided.

    \n
( Array array ) : Arraydeprecated
Old alias to Ext.Array.flatten\n\nRecursively flattens into 1-d Array. ...

Old alias to Ext.Array.flatten

\n\n

Recursively flattens into 1-d Array. Injects Arrays inline.

\n

This method has been deprecated since 4.0.0

Use Ext.Array.flatten instead

\n

Parameters

  • array : Array

    The array to flatten

    \n

Returns

( String/HTMLElement el, [String named] ) : Ext.Element
Gets the globally shared flyweight Element, with the passed node as the active element. ...

Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference\nto this element - the dom node can be overwritten by other code. fly is alias for\nExt.Element.fly.

\n\n

Use this to make one-time references to DOM elements which are not going to be accessed again either by\napplication code, or by Ext's classes. If accessing an element which will be processed regularly, then Ext.get will be more appropriate to take advantage of the caching provided by the Ext.Element\nclass.

\n

Parameters

  • el : String/HTMLElement

    The dom node or id

    \n
  • named : String (optional)

    Allows for creation of named reusable flyweights to prevent conflicts (e.g.\ninternally Ext uses \"_global\")

    \n

Returns

  • Ext.Element

    The shared Element object (or null if no matching element was found)

    \n
Retrieves Ext.Element objects. ...

Retrieves Ext.Element objects. get is an alias for Ext.Element.get.

\n\n

This method does not retrieve Components. This method retrieves Ext.Element\nobjects which encapsulate DOM elements. To retrieve a Component by its ID, use Ext.ComponentManager.get.

\n\n

Uses simple caching to consistently return the same object. Automatically fixes if an object was recreated with\nthe same id via AJAX or DOM.

\n

Parameters

  • el : String/HTMLElement/Ext.Element

    The id of the node, a DOM Node or an existing Element.

    \n

Returns

  • Ext.Element

    The Element object (or null if no matching element was found)

    \n
Returns the current document body as an Ext.Element. ...

Returns the current document body as an Ext.Element.

\n
Get the class of the provided object; returns null if it's not an instance\nof any class created with Ext.define. ...

Get the class of the provided object; returns null if it's not an instance\nof any class created with Ext.define.

\n\n
var component = new Ext.Component();\n\nExt.ClassManager.getClass(component); // returns Ext.Component\n
\n\n

Ext.getClass is alias for Ext.ClassManager.getClass.

\n

Parameters

Returns

Get the name of the class by its reference or its instance. ...

Get the name of the class by its reference or its instance.

\n\n
Ext.ClassManager.getName(Ext.Action); // returns \"Ext.Action\"\n
\n\n

Ext.getClassName is alias for Ext.ClassManager.getName.

\n

Parameters

Returns

This is shorthand reference to Ext.ComponentManager.get. ...

This is shorthand reference to Ext.ComponentManager.get.\nLooks up an existing Component by id

\n

Parameters

Returns the current HTML document object as an Ext.Element. ...

Returns the current HTML document object as an Ext.Element.

\n
Return the dom node for the passed String (id), dom node, or Ext.Element. ...

Return the dom node for the passed String (id), dom node, or Ext.Element.\nOptional 'strict' flag is needed for IE since it can return 'name' and\n'id' elements by using getElementById.\nHere are some examples:

\n\n
// gets dom node based on id\nvar elDom = Ext.getDom('elId');\n// gets dom node based on the dom node\nvar elDom1 = Ext.getDom(elDom);\n\n// If we don't know if we are working with an\n// Ext.Element or a dom node use Ext.getDom\nfunction(el){\n    var dom = Ext.getDom(el);\n    // do something with the dom node\n}\n
\n\n\n

Note: the dom node to be found actually needs to exist (be rendered, etc)\nwhen this method is called to be successful.

\n

Parameters

Returns the current document head as an Ext.Element. ...

Returns the current document head as an Ext.Element.

\n
Returns the current orientation of the mobile device ...

Returns the current orientation of the mobile device

\n

Returns

  • String

    Either 'portrait' or 'landscape'

    \n
Utility method for getting the width of the browser's vertical scrollbar. ...

Utility method for getting the width of the browser's vertical scrollbar. This\ncan differ depending on operating system settings, such as the theme or font size.

\n\n

This method is deprected in favor of getScrollbarSize.

\n

This method has been deprecated

\n

Parameters

  • force : Boolean (optional)

    true to force a recalculation of the value.

    \n

Returns

  • Number

    The width of a vertical scrollbar.

    \n
Returns the size of the browser scrollbars. ...

Returns the size of the browser scrollbars. This can differ depending on\noperating system settings, such as the theme or font size.

\n

Parameters

  • force : Boolean (optional)

    true to force a recalculation of the value.

    \n

Returns

  • Object

    An object containing the width of a vertical scrollbar and the\nheight of a horizontal scrollbar.

    \n
Shortcut to Ext.data.StoreManager.lookup. ...

Shortcut to Ext.data.StoreManager.lookup.

\n\n

Gets a registered Store by id

\n

Parameters

  • store : String/Object

    The id of the Store, or a Store instance, or a store configuration

    \n

Returns

Convert certain characters (&, <, >, and ') from their HTML character equivalents. ...

Convert certain characters (&, <, >, and ') from their HTML character equivalents.

\n

Parameters

  • value : String

    The string to decode

    \n

Returns

Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages. ...

Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.

\n

Parameters

  • value : String

    The string to encode

    \n

Returns

( [HTMLElement/Ext.Element el], [String prefix] ) : String
Generates unique ids. ...

Generates unique ids. If the element already has an id, it is unchanged

\n

Parameters

  • el : HTMLElement/Ext.Element (optional)

    The element to generate an id for

    \n
  • prefix : String (optional)

    Id prefix (defaults \"ext-gen\")

    \n

Returns

( Array/NodeList arr, String methodName, Object... args ) : Arraydeprecated
Invokes a method on each item in an Array. ...

Invokes a method on each item in an Array.

\n\n
// Example:\nExt.invoke(Ext.query(\"p\"), \"getAttribute\", \"id\");\n// [el1.getAttribute(\"id\"), el2.getAttribute(\"id\"), ..., elN.getAttribute(\"id\")]\n
\n\n

This method has been deprecated since 4.0.0

Will be removed in the next major version

\n

Parameters

  • arr : Array/NodeList

    The Array of items to invoke the method on.

    \n
  • methodName : String

    The method name to invoke.

    \n
  • args : Object...

    Arguments to send into the method invocation.

    \n

Returns

  • Array

    The results of invoking the method on each item in the array.

    \n
Returns true if the passed value is a JavaScript Array, false otherwise. ...

Returns true if the passed value is a JavaScript Array, false otherwise.

\n

Parameters

  • target : Object

    The target to test

    \n

Returns

Returns true if the passed value is a boolean. ...

Returns true if the passed value is a boolean.

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Returns true if the passed value is a JavaScript Date object, false otherwise. ...

Returns true if the passed value is a JavaScript Date object, false otherwise.

\n

Parameters

  • object : Object

    The object to test

    \n

Returns

Returns true if the passed value is defined. ...

Returns true if the passed value is defined.

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Returns true if the passed value is an HTMLElement ...

Returns true if the passed value is an HTMLElement

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

( Object value, [Boolean allowEmptyString] ) : Boolean
Returns true if the passed value is empty, false otherwise. ...

Returns true if the passed value is empty, false otherwise. The value is deemed to be empty if it is either:

\n\n
    \n
  • null
  • \n
  • undefined
  • \n
  • a zero-length array
  • \n
  • a zero-length string (Unless the allowEmptyString parameter is set to true)
  • \n
\n\n

Parameters

  • value : Object

    The value to test

    \n
  • allowEmptyString : Boolean (optional)

    true to allow empty strings (defaults to false)

    \n

Returns

Returns true if the passed value is a JavaScript Function, false otherwise. ...

Returns true if the passed value is a JavaScript Function, false otherwise.

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Returns true if the passed value is iterable, false otherwise ...

Returns true if the passed value is iterable, false otherwise

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Returns true if the passed value is a number. ...

Returns true if the passed value is a number. Returns false for non-finite numbers.

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Validates that a value is numeric. ...

Validates that a value is numeric.

\n

Parameters

  • value : Object

    Examples: 1, '1', '2.34'

    \n

Returns

  • Boolean

    True if numeric, false otherwise

    \n
Returns true if the passed value is a JavaScript Object, false otherwise. ...

Returns true if the passed value is a JavaScript Object, false otherwise.

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Returns true if the passed value is a JavaScript 'primitive', a string, number or boolean. ...

Returns true if the passed value is a JavaScript 'primitive', a string, number or boolean.

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Returns true if the passed value is a string. ...

Returns true if the passed value is a string.

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Returns true if the passed value is a TextNode ...

Returns true if the passed value is a TextNode

\n

Parameters

  • value : Object

    The value to test

    \n

Returns

Iterates either an array or an object. ...

Iterates either an array or an object. This method delegates to\nExt.Array.each if the given value is iterable, and Ext.Object.each otherwise.

\n

Parameters

  • object : Object/Array

    The object or array to be iterated.

    \n
  • fn : Function

    The function to be called for each iteration. See and Ext.Array.each and\nExt.Object.each for detailed lists of arguments passed to this function depending on the given object\ntype that is being iterated.

    \n
  • scope : Object (optional)

    The scope (this reference) in which the specified function is executed.\nDefaults to the object being iterated itself.

    \n
( Array/NodeList array, [Function comparisonFn] ) : Objectdeprecated
Old alias to Ext.Array.max\n\nReturns the maximum value in the Array. ...

Old alias to Ext.Array.max

\n\n

Returns the maximum value in the Array.

\n

This method has been deprecated since 4.0.0

Use Ext.Array.max instead

\n

Parameters

  • array : Array/NodeList

    The Array from which to select the maximum value.

    \n
  • comparisonFn : Function (optional)

    a function to perform the comparision which determines maximization.\nIf omitted the \">\" operator will be used. Note: gt = 1; eq = 0; lt = -1

    \n

Returns

  • Object

    maxValue The maximum value

    \n
( Array array ) : Numberdeprecated
Old alias to Ext.Array.mean\n\nCalculates the mean of all items in the array. ...

Old alias to Ext.Array.mean

\n\n

Calculates the mean of all items in the array.

\n

This method has been deprecated since 4.0.0

Use Ext.Array.mean instead

\n

Parameters

  • array : Array

    The Array to calculate the mean value of.

    \n

Returns

A convenient alias method for Ext.Object.merge. ...

A convenient alias method for Ext.Object.merge.

\n\n

Merges any number of objects recursively without referencing them or their children.

\n\n
var extjs = {\n    companyName: 'Ext JS',\n    products: ['Ext JS', 'Ext GWT', 'Ext Designer'],\n    isSuperCool: true\n    office: {\n        size: 2000,\n        location: 'Palo Alto',\n        isFun: true\n    }\n};\n\nvar newStuff = {\n    companyName: 'Sencha Inc.',\n    products: ['Ext JS', 'Ext GWT', 'Ext Designer', 'Sencha Touch', 'Sencha Animator'],\n    office: {\n        size: 40000,\n        location: 'Redwood City'\n    }\n};\n\nvar sencha = Ext.Object.merge(extjs, newStuff);\n\n// extjs and sencha then equals to\n{\n    companyName: 'Sencha Inc.',\n    products: ['Ext JS', 'Ext GWT', 'Ext Designer', 'Sencha Touch', 'Sencha Animator'],\n    isSuperCool: true\n    office: {\n        size: 30000,\n        location: 'Redwood City'\n        isFun: true\n    }\n}\n
\n

Parameters

  • object : Object...

    Any number of objects to merge.

    \n

Returns

  • Object

    merged The object that is created as a result of merging all the objects passed in.

    \n
( Array/NodeList array, [Function comparisonFn] ) : Objectdeprecated
Old alias to Ext.Array.min\n\nReturns the minimum value in the Array. ...

Old alias to Ext.Array.min

\n\n

Returns the minimum value in the Array.

\n

This method has been deprecated since 4.0.0

Use Ext.Array.min instead

\n

Parameters

  • array : Array/NodeList

    The Array from which to select the minimum value.

    \n
  • comparisonFn : Function (optional)

    a function to perform the comparision which determines minimization.\nIf omitted the \"<\" operator will be used. Note: gt = 1; eq = 0; lt = -1

    \n

Returns

  • Object

    minValue The minimum value

    \n
( String namespace1, String namespace2, String etc ) : Object
Creates namespaces to be used for scoping variables and classes so that they are not global. ...

Creates namespaces to be used for scoping variables and classes so that they are not global.\nSpecifying the last node of a namespace implicitly creates all other nodes. Usage:

\n\n
Ext.namespace('Company', 'Company.data');\n\n// equivalent and preferable to the above syntax\nExt.namespace('Company.data');\n\nCompany.Widget = function() { ... };\n\nCompany.data.CustomStore = function(config) { ... };\n
\n

Parameters

Returns

  • Object

    The namespace object. (If multiple arguments are passed, this will be the last namespace created)

    \n\n
( String namespace1, String namespace2, String etc ) : Object
Convenient alias for Ext.namespace\n\nCreates namespaces to be used for scoping variables and classes so that they are ...

Convenient alias for Ext.namespace

\n\n

Creates namespaces to be used for scoping variables and classes so that they are not global.\nSpecifying the last node of a namespace implicitly creates all other nodes. Usage:

\n\n
Ext.namespace('Company', 'Company.data');\n\n// equivalent and preferable to the above syntax\nExt.namespace('Company.data');\n\nCompany.Widget = function() { ... };\n\nCompany.data.CustomStore = function(config) { ... };\n
\n

Parameters

Returns

  • Object

    The namespace object. (If multiple arguments are passed, this will be the last namespace created)

    \n\n
( Object value, Number defaultValue ) : Numberdeprecated
Validate that a value is numeric and convert it to a number if necessary. ...

Validate that a value is numeric and convert it to a number if necessary. Returns the specified default value if\nit is not.

\n\n

Ext.Number.from('1.23', 1); // returns 1.23\nExt.Number.from('abc', 1); // returns 1

\n

This method has been deprecated since 4.0.0

Please use Ext.Number.from instead.

\n

Parameters

  • value : Object
    \n
  • defaultValue : Number

    The value to return if the original value is non-numeric

    \n

Returns

  • Number

    value, if numeric, defaultValue otherwise

    \n
Alias for Ext.EventManager.onDocumentReady ...
Alias for Ext.Loader.onReady with withDomReady set to true ...

Alias for Ext.Loader.onReady with withDomReady set to true

\n

Parameters

Proxy to Ext.Base.override. ...

Proxy to Ext.Base.override. Please refer Ext.Base.override for further details.

\n\n
Ext.define('My.cool.Class', {\n    sayHi: function() {\n        alert('Hi!');\n    }\n}\n\nExt.override(My.cool.Class, {\n    sayHi: function() {\n        alert('About to say...');\n\n        this.callOverridden();\n    }\n});\n\nvar cool = new My.cool.Class();\ncool.sayHi(); // alerts 'About to say...'\n              // alerts 'Hi!'\n
\n\n

Please note that this.callOverridden() only works if the class was previously\ncreated with {@link Ext#define)

\n

Parameters

  • cls : Object

    The class to override

    \n
  • overrides : Object

    The list of functions to add to origClass. This should be specified as an object literal\ncontaining one or more methods.

    \n
( Array/NodeList arr, [Function truth] ) : Arraydeprecated
Partitions the set into two sets: a true set and a false set. ...

Partitions the set into two sets: a true set and a false set.\nExample:\nExample2:

\n\n
// Example 1:\nExt.partition([true, false, true, true, false]); // [[true, true, true], [false, false]]\n\n// Example 2:\nExt.partition(\n    Ext.query(\"p\"),\n    function(val){\n        return val.className == \"class1\"\n    }\n);\n// true are those paragraph elements with a className of \"class1\",\n// false set are those that do not have that className.\n
\n\n

This method has been deprecated since 4.0.0

Will be removed in the next major version

\n

Parameters

  • arr : Array/NodeList

    The array to partition

    \n
  • truth : Function (optional)

    a function to determine truth. If this is omitted the element\nitself must be able to be evaluated for its truthfulness.

    \n

Returns

  • Array

    [array of truish values, array of falsy values]

    \n
Create a new function from the provided fn, the arguments of which are pre-set to args. ...

Create a new function from the provided fn, the arguments of which are pre-set to args.\nNew arguments passed to the newly created callback when it's invoked are appended after the pre-set ones.\nThis is especially useful when creating callbacks.

\n\n

For example:

\n\n
var originalFunction = function(){\n    alert(Ext.Array.from(arguments).join(' '));\n};\n\nvar callback = Ext.Function.pass(originalFunction, ['Hello', 'World']);\n\ncallback(); // alerts 'Hello World'\ncallback('by Me'); // alerts 'Hello World by Me'\n
\n\n

Ext.pass is alias for Ext.Function.pass

\n

Parameters

  • fn : Function

    The original function

    \n
  • args : Array

    The arguments to pass to new callback

    \n
  • scope : Object (optional)

    The scope (this reference) in which the function is executed.

    \n

Returns

( Array/NodeList array, String propertyName ) : Arraydeprecated
Old alias to Ext.Array.pluck\n\nPlucks the value of a property from each item in the Array. ...

Old alias to Ext.Array.pluck

\n\n

Plucks the value of a property from each item in the Array. Example:

\n\n
Ext.Array.pluck(Ext.query(\"p\"), \"className\"); // [el1.className, el2.className, ..., elN.className]\n
\n

This method has been deprecated since 4.0.0

Use Ext.Array.pluck instead

\n

Parameters

  • array : Array/NodeList

    The Array of items to pluck the value from.

    \n
  • propertyName : String

    The property name to pluck from each element.

    \n

Returns

  • Array

    The value from each item in the Array.

    \n
Shorthand for Ext.PluginManager.registerType ...

Shorthand for Ext.PluginManager.registerType

\n

Parameters

  • ptype : String

    The ptype mnemonic string by which the Plugin class\nmay be looked up.

    \n
  • cls : Function

    The new Plugin class.

    \n
( String path, [HTMLElement root] ) : HTMLElement[]
Shorthand of Ext.DomQuery.select\n\nSelects an array of DOM nodes by CSS/XPath selector. ...

Shorthand of Ext.DomQuery.select

\n\n

Selects an array of DOM nodes by CSS/XPath selector.

\n\n

Uses document.querySelectorAll if browser supports that, otherwise falls back to\nExt.DomQuery.jsSelect to do the work.

\n\n

Aliased as query.

\n

Parameters

  • path : String

    The selector/xpath query

    \n
  • root : HTMLElement (optional)

    The start of the query (defaults to document).

    \n

Returns

  • HTMLElement[]

    An array of DOM elements (not a NodeList as returned by querySelectorAll).\nEmpty array when no matches.

    \n
Old way for creating Model classes. ...

Old way for creating Model classes. Instead use:

\n\n
Ext.define(\"MyModel\", {\n    extend: \"Ext.data.Model\",\n    fields: []\n});\n
\n

This method has been deprecated since 4.0.0

Use define instead.

\n

Parameters

  • name : String

    Name of the Model class.

    \n
  • config : Object

    A configuration object for the Model you wish to create.

    \n

Returns

Creates a new store for the given id and config, then registers it with the Store Mananger. ...

Creates a new store for the given id and config, then registers it with the Store Mananger.\nSample usage:

\n\n
Ext.regStore('AllUsers', {\n    model: 'User'\n});\n\n// the store can now easily be used throughout the application\nnew Ext.List({\n    store: 'AllUsers',\n    ... other config\n});\n
\n

Parameters

  • id : String

    The id to set on the new store

    \n
  • config : Object

    The store config

    \n
( HTMLElement node )
Removes a DOM node from the document. ...

Removes a DOM node from the document.

\n\n

Removes this element from the document, removes all DOM event listeners, and deletes the cache reference.\nAll DOM event listeners are removed from this element. If Ext.enableNestedListenerRemoval is\ntrue, then DOM event listeners are also removed from all child nodes. The body node\nwill be ignored if passed in.

\n\n

Parameters

  • node : HTMLElement

    The node to remove

    \n
( String/String[] expressions, [Function fn], [Object scope], [String/String[] excludes] )
Loads all classes by the given names and all their direct dependencies;\noptionally executes the given callback functi...

Loads all classes by the given names and all their direct dependencies;\noptionally executes the given callback function when finishes, within the optional scope.

\n\n

Ext.require is alias for Ext.Loader.require for convenience.

\n

Parameters

  • expressions : String/String[]

    Can either be a string or an array of string

    \n\n
  • fn : Function (optional)

    The callback function

    \n\n
  • scope : Object (optional)

    The execution scope (this) of the callback function

    \n\n
  • excludes : String/String[] (optional)

    Classes to be excluded, useful when being used with expressions

    \n\n
( String/HTMLElement[] selector, [HTMLElement/String root] ) : Ext.CompositeElementLite/Ext.CompositeElement
Selects elements based on the passed CSS selector to enable Element methods\nto be applied to many related elements in...

Selects elements based on the passed CSS selector to enable Element methods\nto be applied to many related elements in one statement through the returned CompositeElement or\nCompositeElementLite object.

\n

Parameters

  • selector : String/HTMLElement[]

    The CSS selector or an array of elements

    \n
  • root : HTMLElement/String (optional)

    The root element of the query or id of the root

    \n

Returns

( Array array ) : Numberdeprecated
Old alias to Ext.Array.sum\n\nCalculates the sum of all items in the given array. ...

Old alias to Ext.Array.sum

\n\n

Calculates the sum of all items in the given array.

\n

This method has been deprecated since 4.0.0

Use Ext.Array.sum instead

\n

Parameters

  • array : Array

    The Array to calculate the sum value of.

    \n

Returns

( String/String[] expressions, [Function fn], [Object scope], [String/String[] excludes] )
Synchronously loads all classes by the given names and all their direct dependencies;\noptionally executes the given c...

Synchronously loads all classes by the given names and all their direct dependencies;\noptionally executes the given callback function when finishes, within the optional scope.

\n\n

Ext.syncRequire is alias for Ext.Loader.syncRequire for convenience.

\n

Parameters

  • expressions : String/String[]

    Can either be a string or an array of string

    \n\n
  • fn : Function (optional)

    The callback function

    \n\n
  • scope : Object (optional)

    The execution scope (this) of the callback function

    \n\n
  • excludes : String/String[] (optional)

    Classes to be excluded, useful when being used with expressions

    \n\n
( Object iterable, [Number start], [Number end] ) : Array
Converts any iterable (numeric indices and a length property) into a true array. ...

Converts any iterable (numeric indices and a length property) into a true array.

\n\n
function test() {\n    var args = Ext.Array.toArray(arguments),\n        fromSecondToLastArgs = Ext.Array.toArray(arguments, 1);\n\n    alert(args.join(' '));\n    alert(fromSecondToLastArgs.join(' '));\n}\n\ntest('just', 'testing', 'here'); // alerts 'just testing here';\n                                 // alerts 'testing here';\n\nExt.Array.toArray(document.getElementsByTagName('div')); // will convert the NodeList into an array\nExt.Array.toArray('splitted'); // returns ['s', 'p', 'l', 'i', 't', 't', 'e', 'd']\nExt.Array.toArray('splitted', 0, 3); // returns ['s', 'p', 'l', 'i']\n
\n\n

Ext.toArray is alias for Ext.Array.toArray

\n

Parameters

  • iterable : Object

    the iterable object to be turned into a true Array.

    \n
  • start : Number (optional)

    a zero-based index that specifies the start of extraction. Defaults to 0

    \n
  • end : Number (optional)

    a zero-based index that specifies the end of extraction. Defaults to the last\nindex of the iterable value

    \n

Returns

( String[] items, String connector ) : Stringdeprecated
Turns an array into a sentence, joined by a specified connector - e.g.:\nExt.toSentence(['Adama', 'Tigh', 'Roslin']); ...

Turns an array into a sentence, joined by a specified connector - e.g.:\nExt.toSentence(['Adama', 'Tigh', 'Roslin']); //'Adama, Tigh and Roslin'\nExt.toSentence(['Adama', 'Tigh', 'Roslin'], 'or'); //'Adama, Tigh or Roslin'

\n

This method has been deprecated since 4.0.0

Will be removed in the next major version

\n

Parameters

  • items : String[]

    The array to create a sentence from

    \n
  • connector : String

    The string to use to connect the last two words. Usually 'and' or 'or' - defaults to 'and'.

    \n

Returns

( Object value ) : Stringdeprecated
Old alias to typeOf\n\nReturns the type of the given variable in string format. ...

Old alias to typeOf

\n\n

Returns the type of the given variable in string format. List of possible values are:

\n\n
    \n
  • undefined: If the given value is undefined
  • \n
  • null: If the given value is null
  • \n
  • string: If the given value is a string
  • \n
  • number: If the given value is a number
  • \n
  • boolean: If the given value is a boolean value
  • \n
  • date: If the given value is a Date object
  • \n
  • function: If the given value is a function reference
  • \n
  • object: If the given value is an object
  • \n
  • array: If the given value is an array
  • \n
  • regexp: If the given value is a regular expression
  • \n
  • element: If the given value is a DOM Element
  • \n
  • textnode: If the given value is a DOM text node and contains something other than whitespace
  • \n
  • whitespace: If the given value is a DOM text node and contains only whitespace
  • \n
\n\n

This method has been deprecated since 4.0.0

Use typeOf instead

\n

Parameters

Returns

Returns the type of the given variable in string format. ...

Returns the type of the given variable in string format. List of possible values are:

\n\n
    \n
  • undefined: If the given value is undefined
  • \n
  • null: If the given value is null
  • \n
  • string: If the given value is a string
  • \n
  • number: If the given value is a number
  • \n
  • boolean: If the given value is a boolean value
  • \n
  • date: If the given value is a Date object
  • \n
  • function: If the given value is a function reference
  • \n
  • object: If the given value is an object
  • \n
  • array: If the given value is an array
  • \n
  • regexp: If the given value is a regular expression
  • \n
  • element: If the given value is a DOM Element
  • \n
  • textnode: If the given value is a DOM text node and contains something other than whitespace
  • \n
  • whitespace: If the given value is a DOM text node and contains only whitespace
  • \n
\n\n

Parameters

Returns

( Array array ) : Arraydeprecated
Old alias to Ext.Array.unique\n\nReturns a new array with unique items ...

Old alias to Ext.Array.unique

\n\n

Returns a new array with unique items

\n

This method has been deprecated since 4.0.0

Use Ext.Array.unique instead

\n

Parameters

Returns

Appends content to the query string of a URL, handling logic for whether to place\na question mark or ampersand. ...

Appends content to the query string of a URL, handling logic for whether to place\na question mark or ampersand.

\n

Parameters

  • url : String

    The URL to append to.

    \n
  • s : String

    The content to append to the URL.

    \n
( String queryString, [Boolean recursive] ) : Objectdeprecated
Alias for Ext.Object.fromQueryString. ...

Alias for Ext.Object.fromQueryString.

\n\n

Converts a query string back into an object.

\n\n

Non-recursive:

\n\n
Ext.Object.fromQueryString(foo=1&bar=2); // returns {foo: 1, bar: 2}\nExt.Object.fromQueryString(foo=&bar=2); // returns {foo: null, bar: 2}\nExt.Object.fromQueryString(some%20price=%24300); // returns {'some price': '$300'}\nExt.Object.fromQueryString(colors=red&colors=green&colors=blue); // returns {colors: ['red', 'green', 'blue']}\n
\n\n

Recursive:

\n\n
  Ext.Object.fromQueryString(\"username=Jacky&dateOfBirth[day]=1&dateOfBirth[month]=2&dateOfBirth[year]=1911&hobbies[0]=coding&hobbies[1]=eating&hobbies[2]=sleeping&hobbies[3][0]=nested&hobbies[3][1]=stuff\", true);\n// returns\n{\n    username: 'Jacky',\n    dateOfBirth: {\n        day: '1',\n        month: '2',\n        year: '1911'\n    },\n    hobbies: ['coding', 'eating', 'sleeping', ['nested', 'stuff']]\n}\n
\n

This method has been deprecated since 4.0.0

Use Ext.Object.fromQueryString instead

\n

Parameters

  • queryString : String

    The query string to decode

    \n
  • recursive : Boolean (optional)

    Whether or not to recursively decode the string. This format is supported by\nPHP / Ruby on Rails servers and similar.

    \n

    Defaults to: false

Returns

( Object object, [Boolean recursive] ) : Stringdeprecated
Alias for Ext.Object.toQueryString. ...

Alias for Ext.Object.toQueryString.

\n\n

Takes an object and converts it to an encoded query string.

\n\n

Non-recursive:

\n\n
Ext.Object.toQueryString({foo: 1, bar: 2}); // returns \"foo=1&bar=2\"\nExt.Object.toQueryString({foo: null, bar: 2}); // returns \"foo=&bar=2\"\nExt.Object.toQueryString({'some price': '$300'}); // returns \"some%20price=%24300\"\nExt.Object.toQueryString({date: new Date(2011, 0, 1)}); // returns \"date=%222011-01-01T00%3A00%3A00%22\"\nExt.Object.toQueryString({colors: ['red', 'green', 'blue']}); // returns \"colors=red&colors=green&colors=blue\"\n
\n\n

Recursive:

\n\n
Ext.Object.toQueryString({\n    username: 'Jacky',\n    dateOfBirth: {\n        day: 1,\n        month: 2,\n        year: 1911\n    },\n    hobbies: ['coding', 'eating', 'sleeping', ['nested', 'stuff']]\n}, true); // returns the following string (broken down and url-decoded for ease of reading purpose):\n// username=Jacky\n//    &dateOfBirth[day]=1&dateOfBirth[month]=2&dateOfBirth[year]=1911\n//    &hobbies[0]=coding&hobbies[1]=eating&hobbies[2]=sleeping&hobbies[3][0]=nested&hobbies[3][1]=stuff\n
\n

This method has been deprecated since 4.0.0

Use Ext.Object.toQueryString instead

\n

Parameters

  • object : Object

    The object to encode

    \n
  • recursive : Boolean (optional)

    Whether or not to interpret the object in recursive format.\n(PHP / Ruby on Rails servers and similar).

    \n

    Defaults to: false

Returns

( Object value, Object defaultValue, [Boolean allowBlank] ) : Objectdeprecated
Utility method for returning a default value if the passed value is empty. ...

Utility method for returning a default value if the passed value is empty.

\n\n\n

The value is deemed to be empty if it is

    \n
  • null
  • \n
  • undefined
  • \n
  • an empty array
  • \n
  • a zero length string (Unless the allowBlank parameter is true)
  • \n
\n\n

This method has been deprecated since 4.0.0

Use valueFrom instead

\n

Parameters

  • value : Object

    The value to test

    \n
  • defaultValue : Object

    The value to return if the original value is empty

    \n
  • allowBlank : Boolean (optional)

    true to allow zero length strings to qualify as non-empty (defaults to false)

    \n

Returns

  • Object

    value, if non-empty, else defaultValue

    \n
( Object value, Object defaultValue, [Boolean allowBlank] ) : Object
Returns the given value itself if it's not empty, as described in isEmpty; returns the default\nvalue (second argument...

Returns the given value itself if it's not empty, as described in isEmpty; returns the default\nvalue (second argument) otherwise.

\n

Parameters

  • value : Object

    The value to test

    \n
  • defaultValue : Object

    The value to return if the original value is empty

    \n
  • allowBlank : Boolean (optional)

    true to allow zero length strings to qualify as non-empty (defaults to false)

    \n

Returns

  • Object

    value, if non-empty, else defaultValue

    \n
Convenient shorthand to create a widget by its xtype, also see Ext.ClassManager.instantiateByAlias\n\nvar button = Ext....

Convenient shorthand to create a widget by its xtype, also see Ext.ClassManager.instantiateByAlias

\n\n
var button = Ext.widget('button'); // Equivalent to Ext.create('widget.button')\nvar panel = Ext.widget('panel'); // Equivalent to Ext.create('widget.panel')\n
\n

Parameters

  • name : String

    xtype of the widget to create.

    \n\n
  • args : Object...

    arguments for the widget constructor.

    \n\n

Returns

( Array/NodeList... arr, [Function zipper] ) : Arraydeprecated
Zips N sets together. ...

Zips N sets together.

\n\n\n
// Example 1:\nExt.zip([1,2,3],[4,5,6]); // [[1,4],[2,5],[3,6]]\n// Example 2:\nExt.zip(\n    [ \"+\", \"-\", \"+\"],\n    [  12,  10,  22],\n    [  43,  15,  96],\n    function(a, b, c){\n        return \"$\" + a + \"\" + b + \".\" + c\n    }\n); // [\"$+12.43\", \"$-10.15\", \"$+22.96\"]\n
\n\n

This method has been deprecated since 4.0.0

Will be removed in the next major version

\n

Parameters

  • arr : Array/NodeList...

    This argument may be repeated. Array(s) to contribute values.

    \n
  • zipper : Function (optional)

    The last item in the argument list. This will drive how the items are zipped together.

    \n

Returns

","allMixins":[],"meta":{},"requires":[],"deprecated":null,"extends":null,"inheritable":false,"static":false,"superclasses":[],"singleton":true,"code_type":"assignment","alias":null,"statics":{"property":[],"css_var":[],"css_mixin":[],"cfg":[],"method":[],"event":[]},"subclasses":[],"uses":[],"protected":false,"mixins":[],"members":{"property":[{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"BLANK_IMAGE_URL","id":"property-BLANK_IMAGE_URL"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"SSL_SECURE_URL","id":"property-SSL_SECURE_URL"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"USE_NATIVE_JSON","id":"property-USE_NATIVE_JSON"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"browser","id":"property-browser"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"chromeVersion","id":"property-chromeVersion"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"enableFx","id":"property-enableFx"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"enableGarbageCollector","id":"property-enableGarbageCollector"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"enableListenerCollection","id":"property-enableListenerCollection"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"enableNestedListenerRemoval","id":"property-enableNestedListenerRemoval"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"enumerables","id":"property-enumerables"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"features","id":"property-features"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"firefoxVersion","id":"property-firefoxVersion"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"ieVersion","id":"property-ieVersion"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isChrome","id":"property-isChrome"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isFF3_0","id":"property-isFF3_0"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isFF3_5","id":"property-isFF3_5"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isFF3_6","id":"property-isFF3_6"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isFF4","id":"property-isFF4"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isFF5","id":"property-isFF5"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isGecko","id":"property-isGecko"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isGecko3","id":"property-isGecko3"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isGecko4","id":"property-isGecko4"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isGecko5","id":"property-isGecko5"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isIE","id":"property-isIE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isIE6","id":"property-isIE6"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isIE7","id":"property-isIE7"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isIE8","id":"property-isIE8"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isIE9","id":"property-isIE9"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isLinux","id":"property-isLinux"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isMac","id":"property-isMac"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isOpera","id":"property-isOpera"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isOpera10_5","id":"property-isOpera10_5"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isReady","id":"property-isReady"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isSafari","id":"property-isSafari"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isSafari2","id":"property-isSafari2"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isSafari3","id":"property-isSafari3"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isSafari4","id":"property-isSafari4"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isSafari5","id":"property-isSafari5"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isSecure","id":"property-isSecure"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isWebKit","id":"property-isWebKit"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"isWindows","id":"property-isWindows"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"log","id":"property-log"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"operaVersion","id":"property-operaVersion"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"os","id":"property-os"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"safariVersion","id":"property-safariVersion"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"scopeResetCSS","id":"property-scopeResetCSS"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"useShims","id":"property-useShims"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext","template":null,"required":null,"protected":false,"name":"webKitVersion","id":"property-webKitVersion"}],"css_var":[],"css_mixin":[],"cfg":[],"method":[{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"addBehaviors","id":"method-addBehaviors"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"application","id":"method-application"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"apply","id":"method-apply"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"applyIf","id":"method-applyIf"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"bind","id":"method-bind"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"callback","id":"method-callback"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.clean instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"clean","id":"method-clean"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"clone","id":"method-clone"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"copyTo","id":"method-copyTo"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"create","id":"method-create"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"createByAlias","id":"method-createByAlias"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use widget instead.

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"createWidget","id":"method-createWidget"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"decode","id":"method-decode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"defer","id":"method-defer"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"define","id":"method-define"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"destroy","id":"method-destroy"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"destroyMembers","id":"method-destroyMembers"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"each","id":"method-each"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"emptyFn","id":"method-emptyFn"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"encode","id":"method-encode"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.String.escapeRegex instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"escapeRe","id":"method-escapeRe"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"exclude","id":"method-exclude"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.define instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"extend","id":"method-extend"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.flatten instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"flatten","id":"method-flatten"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"fly","id":"method-fly"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"get","id":"method-get"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getBody","id":"method-getBody"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getClass","id":"method-getClass"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getClassName","id":"method-getClassName"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getCmp","id":"method-getCmp"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getDoc","id":"method-getDoc"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getDom","id":"method-getDom"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getHead","id":"method-getHead"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getOrientation","id":"method-getOrientation"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"\n","version":null},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getScrollBarWidth","id":"method-getScrollBarWidth"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getScrollbarSize","id":"method-getScrollbarSize"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"getStore","id":"method-getStore"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"htmlDecode","id":"method-htmlDecode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"htmlEncode","id":"method-htmlEncode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"id","id":"method-id"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Will be removed in the next major version

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"invoke","id":"method-invoke"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isArray","id":"method-isArray"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isBoolean","id":"method-isBoolean"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isDate","id":"method-isDate"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isDefined","id":"method-isDefined"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isElement","id":"method-isElement"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isEmpty","id":"method-isEmpty"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isFunction","id":"method-isFunction"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isIterable","id":"method-isIterable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isNumber","id":"method-isNumber"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isNumeric","id":"method-isNumeric"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isObject","id":"method-isObject"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isPrimitive","id":"method-isPrimitive"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isString","id":"method-isString"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"isTextNode","id":"method-isTextNode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"iterate","id":"method-iterate"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.max instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"max","id":"method-max"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.mean instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"mean","id":"method-mean"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"merge","id":"method-merge"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.min instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"min","id":"method-min"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"namespace","id":"method-namespace"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"ns","id":"method-ns"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Please use Ext.Number.from instead.

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"num","id":"method-num"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"onDocumentReady","id":"method-onDocumentReady"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"onReady","id":"method-onReady"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"override","id":"method-override"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Will be removed in the next major version

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"partition","id":"method-partition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"pass","id":"method-pass"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.pluck instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"pluck","id":"method-pluck"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"preg","id":"method-preg"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"query","id":"method-query"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use define instead.

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"regModel","id":"method-regModel"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"regStore","id":"method-regStore"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"removeNode","id":"method-removeNode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"require","id":"method-require"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"select","id":"method-select"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.sum instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"sum","id":"method-sum"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"syncRequire","id":"method-syncRequire"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"toArray","id":"method-toArray"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Will be removed in the next major version

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"toSentence","id":"method-toSentence"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use typeOf instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"type","id":"method-type"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"typeOf","id":"method-typeOf"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Array.unique instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"unique","id":"method-unique"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"urlAppend","id":"method-urlAppend"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Object.fromQueryString instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"urlDecode","id":"method-urlDecode"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use Ext.Object.toQueryString instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"urlEncode","id":"method-urlEncode"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Use valueFrom instead

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"value","id":"method-value"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"valueFrom","id":"method-valueFrom"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"widget","id":"method-widget"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Will be removed in the next major version

\n","version":"4.0.0"},"static":false,"owner":"Ext","template":false,"required":null,"protected":false,"name":"zip","id":"method-zip"}],"event":[]},"private":false,"component":false,"name":"Ext","alternateClassNames":[],"id":"class-Ext","mixedInto":[],"xtypes":{},"files":[{"href":"Ext-more.html#Ext","filename":"Ext-more.js"},{"href":"Ext-more.html#Ext","filename":"Ext-more.js"},{"href":"Ext.html#Ext","filename":"Ext.js"}]}); \ No newline at end of file