X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/output/Ext.resizer.Resizer.js diff --git a/docs/output/Ext.resizer.Resizer.js b/docs/output/Ext.resizer.Resizer.js new file mode 100644 index 00000000..a10e6ddb --- /dev/null +++ b/docs/output/Ext.resizer.Resizer.js @@ -0,0 +1,1024 @@ +Ext.data.JsonP.Ext_resizer_Resizer({ + "tagname": "class", + "name": "Ext.resizer.Resizer", + "doc": "

Applies drag handles to an element or component to make it resizable. The\ndrag handles are inserted into the element (or component's element) and\npositioned absolute.

\n\n\n\n\n

Textarea and img elements will be wrapped with an additional div because\nthese elements do not support child nodes. The original element can be accessed\nthrough the originalTarget property.

\n\n\n\n\n

Here is the list of valid resize handles:

\n\n\n
Value   Description\n------  -------------------\n 'n'     north\n 's'     south\n 'e'     east\n 'w'     west\n 'nw'    northwest\n 'sw'    southwest\n 'se'    southeast\n 'ne'    northeast\n 'all'   all\n
\n\n\n

\"Ext.resizer.Resizer

\n\n

Here's an example showing the creation of a typical Resizer:

\n\n\n
    
\n\n Ext.create('Ext.resizer.Resizer', {\n el: 'elToResize',\n handles: 'all',\n minWidth: 200,\n minHeight: 100,\n maxWidth: 500,\n maxHeight: 400,\n pinned: true\n });\n
\n\n", + "extends": null, + "mixins": [ + "Ext.util.Observable" + ], + "alternateClassNames": [ + "Ext.Resizable" + ], + "xtype": null, + "author": null, + "docauthor": null, + "singleton": false, + "private": false, + "cfg": [ + { + "tagname": "cfg", + "name": "constrainTo", + "member": "Ext.resizer.Resizer", + "type": "Mixed", + "doc": "

Optional. An element, or a Ext.util.Region into which the resize operation\nmust be constrained.

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 119, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-constrainTo" + }, + { + "tagname": "cfg", + "name": "dynamic", + "member": "Ext.resizer.Resizer", + "type": "Boolean", + "doc": "

Specify as true to update the target (Element or Component) dynamically during dragging.\nThis is true by default, but the Component class passes false when it\nis configured as Ext.Component.resizable.

\n\n\n

If specified as false, a proxy element is displayed during the resize operation, and the target\nis updated on mouseup.

\n\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 55, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-dynamic", + "shortDoc": "Specify as true to update the target (Element or Component) dynamically during dragging.\nThis is true by default, but..." + }, + { + "tagname": "cfg", + "name": "handles", + "member": "Ext.resizer.Resizer", + "type": "String", + "doc": "

String consisting of the resize handles to display. Defaults to 's e se' for\nElements and fixed position Components. Defaults to 8 point resizing for floating Components (such as Windows).\nSpecify either 'all' or any of 'n s e w ne nw se sw'.

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 65, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-handles", + "shortDoc": "String consisting of the resize handles to display. Defaults to 's e se' for\nElements and fixed position Components. ..." + }, + { + "tagname": "cfg", + "name": "height", + "member": "Ext.resizer.Resizer", + "type": "Number", + "doc": "

Optional. The height to set target to in pixels (defaults to null)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 72, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-height" + }, + { + "tagname": "cfg", + "name": "listeners", + "member": "Ext.util.Observable", + "type": "Object", + "doc": "

(optional)

A config object containing one or more event handlers to be added to this\nobject during initialization. This should be a valid listeners config object as specified in the\naddListener example for attaching multiple handlers at once.

\n\n

DOM events from ExtJs Components

\n\n\n

While some ExtJs Component classes export selected DOM events (e.g. \"click\", \"mouseover\" etc), this\n\n\n

is usually only done when extra value can be added. For example the DataView's\nclick event passing the node clicked on. To access DOM\nevents directly from a child element of a Component, we need to specify the element option to\nidentify the Component property to add a DOM listener to:

\n\n
new Ext.panel.Panel({\n    width: 400,\n    height: 200,\n    dockedItems: [{\n        xtype: 'toolbar'\n    }],\n    listeners: {\n        click: {\n            element: 'el', //bind to the underlying el property on the panel\n            fn: function(){ console.log('click el'); }\n        },\n        dblclick: {\n            element: 'body', //bind to the underlying body property on the panel\n            fn: function(){ console.log('dblclick body'); }\n        }\n    }\n});\n
\n\n\n

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 103, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-cfg-listeners", + "shortDoc": "(optional) A config object containing one or more event handlers to be added to this\nobject during initialization. T..." + }, + { + "tagname": "cfg", + "name": "maxHeight", + "member": "Ext.resizer.Resizer", + "type": "Number", + "doc": "

The maximum height for the element (defaults to 10000)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 92, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-maxHeight" + }, + { + "tagname": "cfg", + "name": "maxWidth", + "member": "Ext.resizer.Resizer", + "type": "Number", + "doc": "

The maximum width for the element (defaults to 10000)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 97, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-maxWidth" + }, + { + "tagname": "cfg", + "name": "minHeight", + "member": "Ext.resizer.Resizer", + "type": "Number", + "doc": "

The minimum height for the element (defaults to 20)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 82, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-minHeight" + }, + { + "tagname": "cfg", + "name": "minWidth", + "member": "Ext.resizer.Resizer", + "type": "Number", + "doc": "

The minimum width for the element (defaults to 20)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 87, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-minWidth" + }, + { + "tagname": "cfg", + "name": "pinned", + "member": "Ext.resizer.Resizer", + "type": "Boolean", + "doc": "

True to ensure that the resize handles are always\nvisible, false indicates resizing by cursor changes only (defaults to false)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 102, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-pinned", + "shortDoc": "True to ensure that the resize handles are always\nvisible, false indicates resizing by cursor changes only (defaults ..." + }, + { + "tagname": "cfg", + "name": "preserveRatio", + "member": "Ext.resizer.Resizer", + "type": "Boolean", + "doc": "

True to preserve the original ratio between height\nand width during resize (defaults to false)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 108, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-preserveRatio" + }, + { + "tagname": "cfg", + "name": "target", + "member": "Ext.resizer.Resizer", + "type": "Mixed", + "doc": "

The Element or Component to resize.

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 135, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-target" + }, + { + "tagname": "cfg", + "name": "transparent", + "member": "Ext.resizer.Resizer", + "type": "Boolean", + "doc": "

True for transparent handles. This is only applied at config time. (defaults to false)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 114, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-transparent" + }, + { + "tagname": "cfg", + "name": "width", + "member": "Ext.resizer.Resizer", + "type": "Number", + "doc": "

Optional. The width to set the target to in pixels (defaults to null)

\n", + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 77, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-cfg-width" + } + ], + "method": [ + { + "tagname": "method", + "name": "addEvents", + "member": "Ext.util.Observable", + "doc": "

Adds the specified events to the list of events which this Observable may fire.

\n", + "params": [ + { + "type": "Object/String", + "name": "o", + "doc": "

Either an object with event names as properties with a value of true\nor the first event name string if multiple event names are being passed as separate parameters.

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

[additional] Optional additional event names if multiple event names are being passed as separate parameters.\nUsage:

\n\n
this.addEvents('storeloaded', 'storecleared');\n
\n\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 452, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-addEvents", + "shortDoc": "

Adds the specified events to the list of events which this Observable may fire.

\n" + }, + { + "tagname": "method", + "name": "addListener", + "member": "Ext.util.Observable", + "doc": "

Appends an event handler to this object.

\n", + "params": [ + { + "type": "String", + "name": "eventName", + "doc": "

The name of the event to listen for. May also be an object who's property names are event names. See

\n", + "optional": false + }, + { + "type": "Function", + "name": "handler", + "doc": "

The method the event invokes.

\n", + "optional": false + }, + { + "type": "Object", + "name": "scope", + "doc": "

(optional) The scope (this reference) in which the handler function is executed.\nIf omitted, defaults to the object which fired the event.

\n", + "optional": true + }, + { + "type": "Object", + "name": "options", + "doc": "

(optional) An object containing handler configuration.\nproperties. This may contain any of the following properties:


\n\n

\nCombining Options
\nUsing the options argument, it is possible to combine different types of listeners:
\n
\nA delayed, one-time listener.\n

myPanel.on('hide', this.handleClick, this, {\nsingle: true,\ndelay: 100\n});
\n

\nAttaching multiple handlers in 1 call
\nThe method also allows for a single argument to be passed which is a config object containing properties\nwhich specify multiple events. For example:\n

myGridPanel.on({\n    cellClick: this.onCellClick,\n    mouseover: this.onMouseOver,\n    mouseout: this.onMouseOut,\n    scope: this // Important. Ensure \"this\" is correct during handler execution\n});\n
.\n

\n\n", + "optional": true + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 271, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-addListener", + "shortDoc": "

Appends an event handler to this object.

\n" + }, + { + "tagname": "method", + "name": "addManagedListener", + "member": "Ext.util.Observable", + "doc": "

Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n", + "params": [ + { + "type": "Observable/Element", + "name": "item", + "doc": "

The item to which to add a listener/listeners.

\n", + "optional": false + }, + { + "type": "Object/String", + "name": "ename", + "doc": "

The event name, or an object containing event name properties.

\n", + "optional": false + }, + { + "type": "Function", + "name": "fn", + "doc": "

Optional. If the ename parameter was an event name, this\nis the handler function.

\n", + "optional": false + }, + { + "type": "Object", + "name": "scope", + "doc": "

Optional. If the ename parameter was an event name, this\nis the scope (this reference) in which the handler function is executed.

\n", + "optional": false + }, + { + "type": "Object", + "name": "opt", + "doc": "

Optional. If the ename parameter was an event name, this\nis the addListener options.

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 155, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-addManagedListener", + "shortDoc": "

Adds listeners to any Observable object (or Element) which are automatically removed when this Component\nis destroyed.\n\n" + }, + { + "tagname": "method", + "name": "capture", + "member": "Ext.util.Observable", + "doc": "

Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + standard signature of the event\nbefore the event is fired. If the supplied function returns false,\nthe event will not fire.

\n", + "params": [ + { + "type": "Observable", + "name": "o", + "doc": "

The Observable to capture events from.

\n", + "optional": false + }, + { + "type": "Function", + "name": "fn", + "doc": "

The function to call when an event is fired.

\n", + "optional": false + }, + { + "type": "Object", + "name": "scope", + "doc": "

(optional) The scope (this reference) in which the function is executed. Defaults to the Observable firing the event.

\n", + "optional": true + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": true, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 55, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-capture", + "shortDoc": "Starts capture on the specified Observable. All events will be passed\nto the supplied function with the event name + ..." + }, + { + "tagname": "method", + "name": "clearListeners", + "member": "Ext.util.Observable", + "doc": "

Removes all listeners for this object including the managed listeners

\n", + "params": [ + + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 383, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-clearListeners", + "shortDoc": "

Removes all listeners for this object including the managed listeners

\n" + }, + { + "tagname": "method", + "name": "clearManagedListeners", + "member": "Ext.util.Observable", + "doc": "

Removes all managed listeners for this object.

\n", + "params": [ + + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 412, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-clearManagedListeners", + "shortDoc": "

Removes all managed listeners for this object.

\n" + }, + { + "tagname": "method", + "name": "enableBubble", + "member": "Ext.util.Observable", + "doc": "

Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present. There is no implementation in the Observable base class.

\n\n\n

This is commonly used by Ext.Components to bubble events to owner Containers. See Ext.Component.getBubbleTarget. The default\nimplementation in Ext.Component returns the Component's immediate owner. But if a known target is required, this can be overridden to\naccess the required target more quickly.

\n\n\n

Example:

\n\n\n
Ext.override(Ext.form.field.Base, {\n//  Add functionality to Field's initComponent to enable the change event to bubble\ninitComponent : Ext.Function.createSequence(Ext.form.field.Base.prototype.initComponent, function() {\n    this.enableBubble('change');\n}),\n\n//  We know that we want Field's events to bubble directly to the FormPanel.\ngetBubbleTarget : function() {\n    if (!this.formPanel) {\n        this.formPanel = this.findParentByType('form');\n    }\n    return this.formPanel;\n}\n});\n\nvar myForm = new Ext.formPanel({\ntitle: 'User Details',\nitems: [{\n    ...\n}],\nlisteners: {\n    change: function() {\n        // Title goes red if form has been modified.\n        myForm.header.setStyle('color', 'red');\n    }\n}\n});\n
\n\n", + "params": [ + { + "type": "String/Array", + "name": "events", + "doc": "

The event name to bubble, or an Array of event names.

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 554, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-enableBubble", + "shortDoc": "Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present...." + }, + { + "tagname": "method", + "name": "fireEvent", + "member": "Ext.util.Observable", + "doc": "

Fires the specified event with the passed parameters (minus the event name).

\n\n\n

An event may be set to bubble up an Observable parent hierarchy (See Ext.Component.getBubbleTarget)\nby calling enableBubble.

\n\n", + "params": [ + { + "type": "String", + "name": "eventName", + "doc": "

The name of the event to fire.

\n", + "optional": false + }, + { + "type": "Object...", + "name": "args", + "doc": "

Variable number of parameters are passed to handlers.

\n", + "optional": false + } + ], + "return": { + "type": "Boolean", + "doc": "

returns false if any of the handlers return false otherwise it returns true.

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 232, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-fireEvent", + "shortDoc": "Fires the specified event with the passed parameters (minus the event name).\n\n\nAn event may be set to bubble up an Ob..." + }, + { + "tagname": "method", + "name": "getEl", + "member": "Ext.resizer.Resizer", + "doc": "

Returns the element that was configured with the el or target config property.\nIf a component was configured with the target property then this will return the\nelement of this component.

\n

Textarea and img elements will be wrapped with an additional div because\nthese elements do not support child nodes. The original element can be accessed\nthrough the originalTarget property.

\n\n", + "params": [ + + ], + "return": { + "type": "Element", + "doc": "

element

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 382, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-method-getEl", + "shortDoc": "Returns the element that was configured with the el or target config property.\nIf a component was configured with the..." + }, + { + "tagname": "method", + "name": "getTarget", + "member": "Ext.resizer.Resizer", + "doc": "

Returns the element or component that was configured with the target config property.

\n

Textarea and img elements will be wrapped with an additional div because\nthese elements do not support child nodes. The original element can be accessed\nthrough the originalTarget property.

\n\n", + "params": [ + + ], + "return": { + "type": "Element/Component", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 395, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-method-getTarget", + "shortDoc": "Returns the element or component that was configured with the target config property.\nTextarea and img elements will ..." + }, + { + "tagname": "method", + "name": "hasListener", + "member": "Ext.util.Observable", + "doc": "

Checks to see if this object has any listeners for a specified event

\n", + "params": [ + { + "type": "String", + "name": "eventName", + "doc": "

The name of the event to check for

\n", + "optional": false + } + ], + "return": { + "type": "Boolean", + "doc": "

True if the event is being listened for, else false

\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 480, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-hasListener", + "shortDoc": "

Checks to see if this object has any listeners for a specified event

\n" + }, + { + "tagname": "method", + "name": "observe", + "member": "Ext.util.Observable", + "doc": "

Sets observability on the passed class constructor.

\n\n

This makes any event fired on any instance of the passed class also fire a single event through\nthe class allowing for central handling of events on many instances at once.

\n\n

Usage:

\n\n
Ext.util.Observable.observe(Ext.data.Connection);\nExt.data.Connection.on('beforerequest', function(con, options) {\n    console.log('Ajax request made to ' + options.url);\n});\n
\n", + "params": [ + { + "type": "Function", + "name": "c", + "doc": "

The class constructor to make observable.

\n", + "optional": false + }, + { + "type": "Object", + "name": "listeners", + "doc": "

An object containing a series of listeners to add. See addListener.

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": true, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 69, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-observe", + "shortDoc": "Sets observability on the passed class constructor.\n\nThis makes any event fired on any instance of the passed class a..." + }, + { + "tagname": "method", + "name": "on", + "member": "Ext.util.Observable", + "doc": "

Appends an event handler to this object (shorthand for addListener.)

\n", + "params": [ + { + "type": "String", + "name": "eventName", + "doc": "

The type of event to listen for

\n", + "optional": false + }, + { + "type": "Function", + "name": "handler", + "doc": "

The method the event invokes

\n", + "optional": false + }, + { + "type": "Object", + "name": "scope", + "doc": "

(optional) The scope (this reference) in which the handler function is executed.\nIf omitted, defaults to the object which fired the event.

\n", + "optional": true + }, + { + "type": "Object", + "name": "options", + "doc": "

(optional) An object containing handler configuration.

\n", + "optional": true + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 616, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-on", + "shortDoc": "

Appends an event handler to this object (shorthand for addListener.)

\n" + }, + { + "tagname": "method", + "name": "relayEvents", + "member": "Ext.util.Observable", + "doc": "

Relays selected events from the specified Observable as if the events were fired by this.

\n", + "params": [ + { + "type": "Object", + "name": "origin", + "doc": "

The Observable whose events this object is to relay.

\n", + "optional": false + }, + { + "type": "Array", + "name": "events", + "doc": "

Array of event names to relay.

\n", + "optional": false + }, + { + "type": "Object", + "name": "prefix", + "doc": "\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 520, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-relayEvents", + "shortDoc": "

Relays selected events from the specified Observable as if the events were fired by this.

\n" + }, + { + "tagname": "method", + "name": "releaseCapture", + "member": "Ext.util.Observable", + "doc": "

Removes all added captures from the Observable.

\n", + "params": [ + { + "type": "Observable", + "name": "o", + "doc": "

The Observable to release

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": true, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 46, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-releaseCapture", + "shortDoc": "

Removes all added captures from the Observable.

\n" + }, + { + "tagname": "method", + "name": "removeListener", + "member": "Ext.util.Observable", + "doc": "

Removes an event handler.

\n", + "params": [ + { + "type": "String", + "name": "eventName", + "doc": "

The type of event the handler was associated with.

\n", + "optional": false + }, + { + "type": "Function", + "name": "handler", + "doc": "

The handler to remove. This must be a reference to the function passed into the addListener call.

\n", + "optional": false + }, + { + "type": "Object", + "name": "scope", + "doc": "

(optional) The scope originally specified for the handler.

\n", + "optional": true + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 352, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-removeListener", + "shortDoc": "

Removes an event handler.

\n" + }, + { + "tagname": "method", + "name": "removeManagedListener", + "member": "Ext.util.Observable", + "doc": "

Removes listeners that were added by the mon method.

\n", + "params": [ + { + "type": "Observable|Element", + "name": "item", + "doc": "

The item from which to remove a listener/listeners.

\n", + "optional": false + }, + { + "type": "Object|String", + "name": "ename", + "doc": "

The event name, or an object containing event name properties.

\n", + "optional": false + }, + { + "type": "Function", + "name": "fn", + "doc": "

Optional. If the ename parameter was an event name, this\nis the handler function.

\n", + "optional": false + }, + { + "type": "Object", + "name": "scope", + "doc": "

Optional. If the ename parameter was an event name, this\nis the scope (this reference) in which the handler function is executed.

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 196, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-removeManagedListener", + "shortDoc": "

Removes listeners that were added by the mon method.

\n" + }, + { + "tagname": "method", + "name": "resizeTo", + "member": "Ext.resizer.Resizer", + "doc": "

Perform a manual resize and fires the 'resize' event.

\n", + "params": [ + { + "type": "Number", + "name": "width", + "doc": "\n", + "optional": false + }, + { + "type": "Number", + "name": "height", + "doc": "\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 372, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-method-resizeTo", + "shortDoc": "

Perform a manual resize and fires the 'resize' event.

\n" + }, + { + "tagname": "method", + "name": "resumeEvents", + "member": "Ext.util.Observable", + "doc": "

Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevents fired during event suspension will be sent to any listeners now.

\n", + "params": [ + + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 502, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-resumeEvents", + "shortDoc": "Resume firing events. (see suspendEvents)\nIf events were suspended using the queueSuspended parameter, then all\nevent..." + }, + { + "tagname": "method", + "name": "suspendEvents", + "member": "Ext.util.Observable", + "doc": "

Suspend the firing of all events. (see resumeEvents)

\n", + "params": [ + { + "type": "Boolean", + "name": "queueSuspended", + "doc": "

Pass as true to queue up suspended events to be fired\nafter the resumeEvents call instead of discarding all suspended events;

\n", + "optional": false + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 490, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-suspendEvents", + "shortDoc": "

Suspend the firing of all events. (see resumeEvents)

\n" + }, + { + "tagname": "method", + "name": "un", + "member": "Ext.util.Observable", + "doc": "

Removes an event handler (shorthand for removeListener.)

\n", + "params": [ + { + "type": "String", + "name": "eventName", + "doc": "

The type of event the handler was associated with.

\n", + "optional": false + }, + { + "type": "Function", + "name": "handler", + "doc": "

The handler to remove. This must be a reference to the function passed into the addListener call.

\n", + "optional": false + }, + { + "type": "Object", + "name": "scope", + "doc": "

(optional) The scope originally specified for the handler.

\n", + "optional": true + } + ], + "return": { + "type": "void", + "doc": "\n" + }, + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/platform/src/util/Observable.js", + "linenr": 608, + "html_filename": "Observable.html", + "href": "Observable.html#Ext-util-Observable-method-un", + "shortDoc": "

Removes an event handler (shorthand for removeListener.)

\n" + } + ], + "property": [ + { + "tagname": "property", + "name": "el", + "member": "Ext.resizer.Resizer", + "type": "Ext.core.Element", + "doc": "

Outer element for resizing behavior.

\n", + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 139, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-property-el" + }, + { + "tagname": "property", + "name": "originalTarget", + "member": "Ext.resizer.Resizer", + "type": "Mixed", + "doc": "

Reference to the original resize target if the element of the original\nresize target was an IMG or a TEXTAREA which must be wrapped in a DIV.

\n", + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 231, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-property-originalTarget", + "shortDoc": "Reference to the original resize target if the element of the original\nresize target was an IMG or a TEXTAREA which m..." + }, + { + "tagname": "property", + "name": "resizeTracker", + "member": "Ext.resizer.Resizer", + "type": "Ext.resizer.ResizeTracker", + "doc": "\n", + "private": false, + "static": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 257, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-property-resizeTracker" + } + ], + "event": [ + { + "tagname": "event", + "name": "beforeresize", + "member": "Ext.resizer.Resizer", + "doc": "

Fired before resize is allowed. Return false to cancel resize.

\n", + "params": [ + { + "type": "Ext.resizer.Resizer", + "name": "this", + "doc": "\n", + "optional": false + }, + { + "type": "Number", + "name": "width", + "doc": "

The start width

\n", + "optional": false + }, + { + "type": "Number", + "name": "height", + "doc": "

The start height

\n", + "optional": false + }, + { + "type": "Ext.EventObject", + "name": "e", + "doc": "

The mousedown event

\n", + "optional": false + } + ], + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 157, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-event-beforeresize", + "shortDoc": "

Fired before resize is allowed. Return false to cancel resize.

\n" + }, + { + "tagname": "event", + "name": "resize", + "member": "Ext.resizer.Resizer", + "doc": "

Fired after a resize.

\n", + "params": [ + { + "type": "Ext.resizer.Resizer", + "name": "this", + "doc": "\n", + "optional": false + }, + { + "type": "Number", + "name": "width", + "doc": "

The new width

\n", + "optional": false + }, + { + "type": "Number", + "name": "height", + "doc": "

The new height

\n", + "optional": false + }, + { + "type": "Ext.EventObject", + "name": "e", + "doc": "

The mouseup event

\n", + "optional": false + } + ], + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 175, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-event-resize", + "shortDoc": "

Fired after a resize.

\n" + }, + { + "tagname": "event", + "name": "resizedrag", + "member": "Ext.resizer.Resizer", + "doc": "

Fires during resizing. Return false to cancel resize.

\n", + "params": [ + { + "type": "Ext.resizer.Resizer", + "name": "this", + "doc": "\n", + "optional": false + }, + { + "type": "Number", + "name": "width", + "doc": "

The new width

\n", + "optional": false + }, + { + "type": "Number", + "name": "height", + "doc": "

The new height

\n", + "optional": false + }, + { + "type": "Ext.EventObject", + "name": "e", + "doc": "

The mousedown event

\n", + "optional": false + } + ], + "private": false, + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 166, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer-event-resizedrag", + "shortDoc": "

Fires during resizing. Return false to cancel resize.

\n" + } + ], + "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/resizer/Resizer.js", + "linenr": 1, + "html_filename": "Resizer.html", + "href": "Resizer.html#Ext-resizer-Resizer", + "cssVar": [ + + ], + "cssMixin": [ + + ], + "component": false, + "superclasses": [ + + ], + "subclasses": [ + + ], + "mixedInto": [ + + ], + "allMixins": [ + "Ext.util.Observable" + ] +}); \ No newline at end of file