/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_Resizable({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.util.Observable","uses":[],"html":"

Hierarchy

Ext.util.Observable
Ext.Resizable

Files

Applies drag handles to an element to make it resizable. The drag handles are inserted into the element\nand positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap\nthe textarea in a div and set 'resizeChild' to true (or to the id of the element), or set wrap:true in your config and\nthe element will be wrapped for you automatically.

\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

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

\n\n\n
var resizer = new Ext.Resizable('element-id', {\n    handles: 'all',\n    minWidth: 200,\n    minHeight: 100,\n    maxWidth: 500,\n    maxHeight: 400,\n    pinned: true\n});\nresizer.on('resize', myHandler);\n
\n\n\n

To hide a particular handle, set its display to none in CSS, or through script:
\nresizer.east.setDisplayed(false);

\n\n
Defined By

Config options

String 'auto' or an array [width, height] with values to be added to the\nresize operation's new size (defaults to [0,...

String 'auto' or an array [width, height] with values to be added to the\nresize operation's new size (defaults to [0, 0])

\n

Defaults to: [0, 0]

Ext.Resizable
view source
: Boolean
True to animate the resize (not compatible with dynamic sizing, defaults to false) ...

True to animate the resize (not compatible with dynamic sizing, defaults to false)

\n

Defaults to: false

Ext.Resizable
view source
constrainTo : Mixed

Constrain the resize to a particular element

\n

Constrain the resize to a particular element

\n
Ext.Resizable
view source
: Boolean
True to disable mouse tracking. ...

True to disable mouse tracking. This is only applied at config time. (defaults to false)

\n

Defaults to: false

Ext.Resizable
view source
: Boolean
Convenience to initialize drag drop (defaults to false) ...

Convenience to initialize drag drop (defaults to false)

\n

Defaults to: false

Animation duration if animate = true (defaults to 0.35) ...

Animation duration if animate = true (defaults to 0.35)

\n

Defaults to: 0.35

Ext.Resizable
view source
: Boolean
True to resize the element while dragging instead of using a proxy (defaults to false) ...

True to resize the element while dragging instead of using a proxy (defaults to false)

\n

Defaults to: false

Ext.Resizable
view source
: String
Animation easing if animate = true (defaults to 'easingOutStrong') ...

Animation easing if animate = true (defaults to 'easingOutStrong')

\n

Defaults to: 'easeOutStrong'

Ext.Resizable
view source
: Boolean
False to disable resizing (defaults to true) ...

False to disable resizing (defaults to true)

\n

Defaults to: true

A css class to add to each handle. ...

A css class to add to each handle. Defaults to ''.

\n
Ext.Resizable
view source
: String
String consisting of the resize handles to display (defaults to undefined). ...

String consisting of the resize handles to display (defaults to undefined).\nSpecify either 'all' or any of 'n s e w ne nw se sw'.

\n

Defaults to: false

Ext.Resizable
view source
height : Number

The height of the element in pixels (defaults to null)

\n

The height of the element in pixels (defaults to null)

\n
The increment to snap the height resize in pixels\n(only applies if dynamic==true). ...

The increment to snap the height resize in pixels\n(only applies if dynamic==true). Defaults to 0.

\n

Defaults to: 0

(optional) A config object containing one or more event handlers to be added to this\nobject during initialization. ...

(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 Component's HTMLElement, listeners must be added to the Element after the Component\nhas been rendered. A plugin can simplify this step:

\n\n
// Plugin is configured with a listeners config object.\n// The Component is appended to the argument list of all handler functions.\nExt.DomObserver = Ext.extend(Object, {\n    constructor: function(config) {\n        this.listeners = config.listeners ? config.listeners : config;\n    },\n\n    // Component passes itself into plugin's init method\n    init: function(c) {\n        var p, l = this.listeners;\n        for (p in l) {\n            if (Ext.isFunction(l[p])) {\n                l[p] = this.createHandler(l[p], c);\n            } else {\n                l[p].fn = this.createHandler(l[p].fn, c);\n            }\n        }\n\n        // Add the listeners to the Element immediately following the render call\n        c.render = c.render.createSequence(function() {\n            var e = c.getEl();\n            if (e) {\n                e.on(l);\n            }\n        });\n    },\n\n    createHandler: function(fn, c) {\n        return function(e) {\n            fn.call(this, e, c);\n        };\n    }\n});\n\nvar combo = new Ext.form.ComboBox({\n\n    // Collapse combo when its element is clicked on\n    plugins: [ new Ext.DomObserver({\n        click: function(evt, comp) {\n            comp.collapse();\n        }\n    })],\n    store: myStore,\n    typeAhead: true,\n    mode: 'local',\n    triggerAction: 'all'\n});\n
\n\n\n

\n
The maximum height for the element (defaults to 10000) ...

The maximum height for the element (defaults to 10000)

\n

Defaults to: 10000

The maximum width for the element (defaults to 10000) ...

The maximum width for the element (defaults to 10000)

\n

Defaults to: 10000

The minimum height for the element (defaults to 5) ...

The minimum height for the element (defaults to 5)

\n

Defaults to: 5

The minimum width for the element (defaults to 5) ...

The minimum width for the element (defaults to 5)

\n

Defaults to: 5

Ext.Resizable
view source
: Number
The minimum x for the element (defaults to 0) ...

The minimum x for the element (defaults to 0)

\n

Defaults to: 0

Ext.Resizable
view source
: Number
The minimum x for the element (defaults to 0) ...

The minimum x for the element (defaults to 0)

\n

Defaults to: 0

Ext.Resizable
view source
: Boolean
Deprecated. ...

Deprecated. Deprecated style of adding multi-direction resize handles.

\n

Defaults to: false

Ext.Resizable
view source
: Boolean
True to ensure that the resize handles are always visible, false to display them only when the\nuser mouses over the r...

True to ensure that the resize handles are always visible, false to display them only when the\nuser mouses over the resizable borders. This is only applied at config time. (defaults to false)

\n

Defaults to: false

Ext.Resizable
view source
: Boolean
True to preserve the original ratio between height\nand width during resize (defaults to false) ...

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

\n

Defaults to: false

Ext.Resizable
view source
: Boolean/String/Element
True to resize the first child, or id/element to resize (defaults to false) ...

True to resize the first child, or id/element to resize (defaults to false)

\n

Defaults to: false

Ext.Resizable
view source
resizeRegion : Ext.lib.Region

Constrain the resize to a particular region

\n

Constrain the resize to a particular region

\n
Ext.Resizable
view source
: Boolean
True for transparent handles. ...

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

\n

Defaults to: false

Ext.Resizable
view source
width : Number

The width of the element in pixels (defaults to null)

\n

The width of the element in pixels (defaults to null)

\n
The increment to snap the width resize in pixels\n(only applies if dynamic==true). ...

The increment to snap the width resize in pixels\n(only applies if dynamic==true). Defaults to 0.

\n

Defaults to: 0

Ext.Resizable
view source
: Boolean
True to wrap an element with a div if needed (required for textareas and images, defaults to false)\nin favor of the h...

True to wrap an element with a div if needed (required for textareas and images, defaults to false)\nin favor of the handles config option (defaults to false)

\n
Defined By

Properties

Ext.Resizable
view source
: Boolean
Writable. ...

Writable. False if resizing is disabled.

\n
The proxy Element that is resized in place of the real Element during the resize operation. ...

The proxy Element that is resized in place of the real Element during the resize operation.\nThis may be queried using Ext.Element.getBox to provide the new area to resize to.\nRead only.

\n
Defined By

Methods

Ext.Resizable
view source
new( el, config ) : Ext.Resizable
Create a new resizable component ...

Create a new resizable component

\n

Parameters

  • el : Mixed

    The id or element to resize

    \n
  • config : Object

    configuration options

    \n

Returns

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

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

\n

Parameters

  • o : Object|String

    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 : string

    . Event name if multiple event names are being passed as separate parameters.\nUsage:

    \n\n
    this.addEvents('storeloaded', 'storecleared');\n
    \n\n
( eventName, handler, [scope], [options] )
Appends an event handler to this object. ...

Appends an event handler to this object.

\n

Parameters

  • eventName : String

    The name of the event to listen for.

    \n
  • handler : Function

    The method the event invokes.

    \n
  • scope : Object (optional)

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

    \n
  • options : Object (optional)

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

      \n
    • scope : Object
      The scope (this reference) in which the handler function is executed.\nIf omitted, defaults to the object which fired the event.
    • \n
    • delay : Number
      The number of milliseconds to delay the invocation of the handler after the event fires.
    • \n
    • single : Boolean
      True to add a handler to handle just the next firing of the event, and then remove itself.
    • \n
    • buffer : Number
      Causes the handler to be scheduled to run in an Ext.util.DelayedTask delayed\nby the specified number of milliseconds. If the event fires again within that time, the original\nhandler is not invoked, but the new handler is scheduled in its place.
    • \n
    • target : Observable
      Only call the handler if the event was fired on the target Observable, not\nif the event was bubbled up from a child Observable.
    • \n

    \n\n

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

    myDataView.on('click', this.onClick, 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 handlers.\n

    \n

    myGridPanel.on({\n'click' : {\n    fn: this.onClick,\n    scope: this,\n    delay: 100\n},\n'mouseover' : {\n    fn: this.onMouseOver,\n    scope: this\n},\n'mouseout' : {\n    fn: this.onMouseOut,\n    scope: this\n}\n});
    \n

    \nOr a shorthand syntax:
    \n

    myGridPanel.on({\n'click' : this.onClick,\n'mouseover' : this.onMouseOver,\n'mouseout' : this.onMouseOut,\n scope: this\n});
    \n\n

Ext.Resizable
view source
( v, diff, m, mx )private
private ...

private

\n

Parameters

  • v : Object
    \n
  • diff : Object
    \n
  • m : Object
    \n
  • mx : Object
    \n
Ext.Resizable
view source
( [removeEl] )
Destroys this resizable. ...

Destroys this resizable. If the element was wrapped and\nremoveEl is not true then the element remains.

\n

Parameters

  • removeEl : Boolean (optional)

    true to remove the element from the DOM

    \n
Enables events fired by this Observable to bubble up an owner hierarchy by calling\nthis.getBubbleTarget() if present. ...

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, {\n    //  Add functionality to Field's initComponent to enable the change event to bubble\n    initComponent : Ext.form.Field.prototype.initComponent.createSequence(function() {\n        this.enableBubble('change');\n    }),\n\n    //  We know that we want Field's events to bubble directly to the FormPanel.\n    getBubbleTarget : function() {\n        if (!this.formPanel) {\n            this.formPanel = this.findParentByType('form');\n        }\n        return this.formPanel;\n    }\n});\n\nvar myForm = new Ext.formPanel({\n    title: 'User Details',\n    items: [{\n        ...\n    }],\n    listeners: {\n        change: function() {\n            // Title goes red if form has been modified.\n            myForm.header.setStyle('color', 'red');\n        }\n    }\n});\n
\n\n

Parameters

  • events : String/Array

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

    \n
( eventName, args ) : Boolean
Fires the specified event with the passed parameters (minus the event name). ...

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

Parameters

  • eventName : String

    The name of the event to fire.

    \n
  • args : Object...

    Variable number of parameters are passed to handlers.

    \n

Returns

  • Boolean

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

    \n
Ext.Resizable
view source
( ) : Ext.Element
Returns the element this component is bound to. ...

Returns the element this component is bound to.

\n

Returns

Returns the resizeChild element (or null). ...

Returns the resizeChild element (or null).

\n

Returns

Ext.Resizable
view source
( )private
private ...

private

\n
Ext.Resizable
view source
( )private
private ...

private

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

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

\n

Parameters

  • eventName : String

    The name of the event to check for

    \n

Returns

  • Boolean

    True if the event is being listened for, else false

    \n
( eventName, handler, [scope], [options] )
Appends an event handler to this object (shorthand for addListener.) ...

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

\n

Parameters

  • eventName : String

    The type of event to listen for

    \n
  • handler : Function

    The method the event invokes

    \n
  • scope : Object (optional)

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

    \n
  • options : Object (optional)

    An object containing handler configuration.

    \n
Ext.Resizable
view source
( handle, e )private
private ...

private

\n

Parameters

  • handle : Object
    \n
  • e : Object
    \n
Ext.Resizable
view source
( e )private
private ...

private

\n

Parameters

  • e : Object
    \n
Ext.Resizable
view source
( e )private
private ...

private

\n

Parameters

  • e : Object
    \n
Removes all listeners for this object ...

Removes all listeners for this object

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

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

\n

Parameters

  • o : Object

    The Observable whose events this object is to relay.

    \n
  • events : Array

    Array of event names to relay.

    \n
( eventName, handler, [scope] )
Removes an event handler. ...

Removes an event handler.

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n
  • handler : Function

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

    \n
  • scope : Object (optional)

    The scope originally specified for the handler.

    \n
Ext.Resizable
view source
( )
Performs resizing of the associated Element. ...

Performs resizing of the associated Element. This method is called internally by this\nclass, and should not be called by user code.

\n\n\n

If a Resizable is being used to resize an Element which encapsulates a more complex UI\ncomponent such as a Panel, this method may be overridden by specifying an implementation\nas a config option to provide appropriate behaviour at the end of the resize operation on\nmouseup, for example resizing the Panel, and relaying the Panel's content.

\n\n\n

The new area to be resized to is available by examining the state of the proxy\nElement. Example:\n

new Ext.Panel({\n    title: 'Resize me',\n    x: 100,\n    y: 100,\n    renderTo: Ext.getBody(),\n    floating: true,\n    frame: true,\n    width: 400,\n    height: 200,\n    listeners: {\n        render: function(p) {\n            new Ext.Resizable(p.getEl(), {\n                handles: 'all',\n                pinned: true,\n                transparent: true,\n                resizeElement: function() {\n                    var box = this.proxy.getBox();\n                    p.updateBox(box);\n                    if (p.layout) {\n                        p.doLayout();\n                    }\n                    return box;\n                }\n           });\n       }\n    }\n}).show();\n
\n\n

Ext.Resizable
view source
( width, height )
Perform a manual resize and fires the 'resize' event. ...

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

\n

Parameters

Resume firing events. ...

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
Ext.Resizable
view source
( value, inc, min )private
private ...

private

\n

Parameters

  • value : Object
    \n
  • inc : Object
    \n
  • min : Object
    \n
Ext.Resizable
view source
( e, handle )private
private ...

private

\n

Parameters

  • e : Object
    \n
  • handle : Object
    \n
Suspend the firing of all events. ...

Suspend the firing of all events. (see resumeEvents)

\n

Parameters

  • queueSuspended : Boolean

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

    \n
Ext.Resizable
view source
( )private
...
\n
( eventName, handler, [scope] )
Removes an event handler (shorthand for removeListener.) ...

Removes an event handler (shorthand for removeListener.)

\n

Parameters

  • eventName : String

    The type of event the handler was associated with.

    \n
  • handler : Function

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

    \n
  • scope : Object (optional)

    The scope originally specified for the handler.

    \n
Ext.Resizable
view source
( )private
private ...

private

\n
Defined By

Events

Ext.Resizable
view source
( this, e )
Fired before resize is allowed. ...

Fired before resize is allowed. Set enabled to false to cancel resize.

\n

Parameters

Ext.Resizable
view source
( this, width, height, e )
Fired after a resize. ...

Fired after a resize.

\n

Parameters

","superclasses":["Ext.util.Observable"],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"Resizable.html#Ext-Resizable","filename":"Resizable.js"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.Resizable","meta":{},"name":"enabled","id":"property-enabled"},{"tagname":"property","owner":"Ext.Resizable","meta":{},"name":"proxy","id":"property-proxy"}],"cfg":[{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"adjustments","id":"cfg-adjustments"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"animate","id":"cfg-animate"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"constrainTo","id":"cfg-constrainTo"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"disableTrackOver","id":"cfg-disableTrackOver"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"draggable","id":"cfg-draggable"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"duration","id":"cfg-duration"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"dynamic","id":"cfg-dynamic"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"easing","id":"cfg-easing"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"enabled","id":"cfg-enabled"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"handleCls","id":"cfg-handleCls"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"handles","id":"cfg-handles"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"height","id":"cfg-height"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"heightIncrement","id":"cfg-heightIncrement"},{"tagname":"cfg","owner":"Ext.util.Observable","meta":{},"name":"listeners","id":"cfg-listeners"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"maxHeight","id":"cfg-maxHeight"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"maxWidth","id":"cfg-maxWidth"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"minHeight","id":"cfg-minHeight"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"minWidth","id":"cfg-minWidth"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"minX","id":"cfg-minX"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"minY","id":"cfg-minY"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"multiDirectional","id":"cfg-multiDirectional"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"pinned","id":"cfg-pinned"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"preserveRatio","id":"cfg-preserveRatio"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"resizeChild","id":"cfg-resizeChild"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"resizeRegion","id":"cfg-resizeRegion"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"transparent","id":"cfg-transparent"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"width","id":"cfg-width"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"widthIncrement","id":"cfg-widthIncrement"},{"tagname":"cfg","owner":"Ext.Resizable","meta":{},"name":"wrap","id":"cfg-wrap"}],"css_var":[],"method":[{"tagname":"method","owner":"Ext.Resizable","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addEvents","id":"method-addEvents"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"addListener","id":"method-addListener"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"constrain","id":"method-constrain"},{"tagname":"method","owner":"Ext.Resizable","meta":{},"name":"destroy","id":"method-destroy"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"enableBubble","id":"method-enableBubble"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"fireEvent","id":"method-fireEvent"},{"tagname":"method","owner":"Ext.Resizable","meta":{},"name":"getEl","id":"method-getEl"},{"tagname":"method","owner":"Ext.Resizable","meta":{},"name":"getResizeChild","id":"method-getResizeChild"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"handleOut","id":"method-handleOut"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"handleOver","id":"method-handleOver"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"hasListener","id":"method-hasListener"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"on","id":"method-on"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"onMouseDown","id":"method-onMouseDown"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"onMouseMove","id":"method-onMouseMove"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"onMouseUp","id":"method-onMouseUp"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"purgeListeners","id":"method-purgeListeners"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"relayEvents","id":"method-relayEvents"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"removeListener","id":"method-removeListener"},{"tagname":"method","owner":"Ext.Resizable","meta":{},"name":"resizeElement","id":"method-resizeElement"},{"tagname":"method","owner":"Ext.Resizable","meta":{},"name":"resizeTo","id":"method-resizeTo"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"resumeEvents","id":"method-resumeEvents"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"snap","id":"method-snap"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"startSizing","id":"method-startSizing"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"suspendEvents","id":"method-suspendEvents"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"syncHandleHeight","id":"method-syncHandleHeight"},{"tagname":"method","owner":"Ext.util.Observable","meta":{},"name":"un","id":"method-un"},{"tagname":"method","owner":"Ext.Resizable","meta":{"private":true},"name":"updateChildSize","id":"method-updateChildSize"}],"event":[{"tagname":"event","owner":"Ext.Resizable","meta":{},"name":"beforeresize","id":"event-beforeresize"},{"tagname":"event","owner":"Ext.Resizable","meta":{},"name":"resize","id":"event-resize"}],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.Resizable","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.Resizable","mixins":[],"mixedInto":[]});