/* 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_dd_DragDrop({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":["Ext.dd.DD","Ext.dd.DDTarget"],"extends":null,"uses":[],"html":"

Subclasses

Files

Defines the interface and base operation of items that that can be\ndragged or can be drop targets. It was designed to be extended, overriding\nthe event handlers for startDrag, onDrag, onDragOver and onDragOut.\nUp to three html elements can be associated with a DragDrop instance:

\n\n\n\n\n

This class should not be instantiated until the onload event to ensure that\nthe associated elements are available.\nThe following would define a DragDrop obj that would interact with any\nother DragDrop obj in the \"group1\" group:

\n\n
 dd = new Ext.dd.DragDrop(\"div1\", \"group1\");\n
\n\n\n

Since none of the event handlers have been implemented, nothing would\nactually happen if you were to run the code above. Normally you would\noverride this class or one of the default implementations, but you can\nalso override the methods you want on an instance of the class...

\n\n
 dd.onDragDrop = function(e, id) {\n   alert(\"dd was dropped on \" + id);\n }\n
\n\n
Defined By

Properties

Ext.dd.DragDrop
view source
: Booleanprivate
Internal typeof flag ...

Internal typeof flag

\n

Defaults to: true

Ext.dd.DragDrop
view source
_domRef : Objectprivate

Cached reference to the linked element

\n

Cached reference to the linked element

\n
Ext.dd.DragDrop
view source
: boolean
The available property is false until the linked dom element is accessible. ...

The available property is false until the linked dom element is accessible.

\n

Defaults to: false

Ext.dd.DragDrop
view source
config : object

Configuration attributes passed into the constructor

\n

Configuration attributes passed into the constructor

\n
Ext.dd.DragDrop
view source
: booleanprivate
Set to true when horizontal contraints are applied ...

Set to true when horizontal contraints are applied

\n

Defaults to: false

Ext.dd.DragDrop
view source
: booleanprivate
Set to true when vertical contraints are applied ...

Set to true when vertical contraints are applied

\n

Defaults to: false

Ext.dd.DragDrop
view source
: Object
Provides default constraint padding to \"constrainTo\" elements (defaults to {left: 0, right:0, top:0, bottom:0}). ...

Provides default constraint padding to \"constrainTo\" elements (defaults to {left: 0, right:0, top:0, bottom:0}).

\n

Defaults to: {left: 0, right: 0, top: 0, bottom: 0}

Ext.dd.DragDrop
view source
: Stringprivate
The id of the element that will be dragged. ...

The id of the element that will be dragged. By default this is same\nas the linked element, but could be changed to another element. Ex:\nExt.dd.DDProxy

\n
Ext.dd.DragDrop
view source
: object
The group defines a logical collection of DragDrop objects that are\nrelated. ...

The group defines a logical collection of DragDrop objects that are\nrelated. Instances only get events when interacting with other\nDragDrop object in the same group. This lets us define multiple\ngroups using a single DragDrop subclass if we want. An object in the format {'group1':true, 'group2':true}

\n
Ext.dd.DragDrop
view source
: Stringprivate
The ID of the element that initiates the drag operation. ...

The ID of the element that initiates the drag operation. By default\nthis is the linked element, but could be changed to be a child of this\nelement. This lets us do things like only starting the drag when the\nheader element within the linked html element is clicked.

\n
Ext.dd.DragDrop
view source
: boolean
By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is. ...

By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is. This is done in part to work around a\nbug in some browsers that mis-report the mousedown if the previous\nmouseup happened outside of the window. This property is set to true\nif outer handles are defined. @default false

\n

Defaults to: false

Ext.dd.DragDrop
view source
: String
The id of the element associated with this object. ...

The id of the element associated with this object. This is what we\nrefer to as the \"linked element\" because the size and position of\nthis element is used to determine when the drag and drop objects have\ninteracted.

\n
Ext.dd.DragDrop
view source
: Boolean
Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. ...

Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. Defaults to true - DragDrop objects do not by default\nfire drag events to themselves.

\n

An Array of CSS class names for elements to be considered in valid as drag handles.

\n

An Array of CSS class names for elements to be considered in valid as drag handles.

\n
Ext.dd.DragDrop
view source
: Object
An object who's property names identify the IDs of elements to be considered invalid as drag handles. ...

An object who's property names identify the IDs of elements to be considered invalid as drag handles.\nA non-null property value identifies the ID as invalid. For example, to prevent\ndragging from being initiated on element ID \"foo\", use:

\n\n
{\n    foo: true\n}
\n\n
Ext.dd.DragDrop
view source
: Object
An object who's property names identify HTML tags to be considered invalid as drag handles. ...

An object who's property names identify HTML tags to be considered invalid as drag handles.\nA non-null property value identifies the tag as invalid. Defaults to the\nfollowing value which prevents drag operations from being initiated by <a> elements:

\n\n
{\n    A: \"A\"\n}
\n\n
Ext.dd.DragDrop
view source
: boolean
By default, all instances can be a drop target. ...

By default, all instances can be a drop target. This can be disabled by\nsetting isTarget to false.

\n

Defaults to: true

Ext.dd.DragDrop
view source
: booleanprivate
Individual drag/drop instances can be locked. ...

Individual drag/drop instances can be locked. This will prevent\nonmousedown start drag.

\n

Defaults to: false

Ext.dd.DragDrop
view source
: boolean
Maintain offsets when we resetconstraints. ...

Maintain offsets when we resetconstraints. Set to true when you want\nthe position of the element relative to its parent to stay the same\nwhen the page changes

\n

Defaults to: false

Ext.dd.DragDrop
view source
: intprivate
The right constraint ...

The right constraint

\n

Defaults to: 0

Ext.dd.DragDrop
view source
: intprivate
The down constraint ...

The down constraint

\n

Defaults to: 0

Ext.dd.DragDrop
view source
: intprivate
The left constraint ...

The left constraint

\n

Defaults to: 0

Ext.dd.DragDrop
view source
: intprivate
The up constraint ...

The up constraint

\n

Defaults to: 0

Ext.dd.DragDrop
view source
: boolean
When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is ...

When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is dragged over them. Defaults to false.

\n

Defaults to: false

Ext.dd.DragDrop
view source
: int[]
The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object. ...

The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object. An array containing the 4 padding values: [top, right, bottom, left]

\n
Ext.dd.DragDrop
view source
: boolean
By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed m...

By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed mouse). Set to true to\nallow drag and drop to start with any mouse click that is propogated\nby the browser

\n

Defaults to: true

Ext.dd.DragDrop
view source
: intprivate
The linked element's absolute X position at the time the drag was\nstarted ...

The linked element's absolute X position at the time the drag was\nstarted

\n

Defaults to: 0

Ext.dd.DragDrop
view source
: intprivate
The linked element's absolute X position at the time the drag was\nstarted ...

The linked element's absolute X position at the time the drag was\nstarted

\n

Defaults to: 0

Ext.dd.DragDrop
view source
: int[]
Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval. ...

Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval. This array is generated automatically\nwhen you define a tick interval.

\n
Ext.dd.DragDrop
view source
: int[]
Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval. ...

Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval. This array is generated automatically\nwhen you define a tick interval.

\n
Defined By

Methods

Ext.dd.DragDrop
view source
new( id, sGroup, config ) : Ext.dd.DragDrop
...
\n

Parameters

  • id : String

    of the element that is linked to this instance

    \n
  • sGroup : String

    the group of related DragDrop objects

    \n
  • config : object

    an object containing configurable attributes

    \n\n
               Valid properties for DragDrop:\n               padding, isTarget, maintainOffset, primaryButtonOnly\n
    \n

Returns

Ext.dd.DragDrop
view source
( cssClass )
Lets you specify a css class of elements that will not initiate a drag ...

Lets you specify a css class of elements that will not initiate a drag

\n

Parameters

  • cssClass : string

    the class of the elements you wish to ignore

    \n
Ext.dd.DragDrop
view source
( id )
Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag ...

Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag

\n

Parameters

  • id : string

    the element id of the element you wish to ignore

    \n
Ext.dd.DragDrop
view source
( tagName )
Allows you to specify a tag name that should not start a drag operation\nwhen clicked. ...

Allows you to specify a tag name that should not start a drag operation\nwhen clicked. This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag.

\n

Parameters

  • tagName : string

    the type of element to exclude

    \n
Ext.dd.DragDrop
view source
( sGroup )
Add this instance to a group of related drag/drop objects. ...

Add this instance to a group of related drag/drop objects. All\ninstances belong to at least one group, and can belong to as many\ngroups as needed.

\n

Parameters

  • sGroup : Object

    {string} the name of the group

    \n
Ext.dd.DragDrop
view source
( )
Applies the configuration parameters that were passed into the constructor. ...

Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain. So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object.

\n
Ext.dd.DragDrop
view source
( e )private
Code that executes immediately before the onDrag event ...

Code that executes immediately before the onDrag event

\n

Parameters

  • e : Object
    \n
Ext.dd.DragDrop
view source
( e )private
Code that executes immediately before the onDragDrop event ...

Code that executes immediately before the onDragDrop event

\n

Parameters

  • e : Object
    \n
Ext.dd.DragDrop
view source
( e )private
Code that executes immediately before the onDragOut event ...

Code that executes immediately before the onDragOut event

\n

Parameters

  • e : Object
    \n
Ext.dd.DragDrop
view source
( e )private
Code that executes immediately before the onDragOver event ...

Code that executes immediately before the onDragOver event

\n

Parameters

  • e : Object
    \n
Ext.dd.DragDrop
view source
( e )private
Code that executes immediately before the endDrag event ...

Code that executes immediately before the endDrag event

\n

Parameters

  • e : Object
    \n
Ext.dd.DragDrop
view source
( e )private
Code executed immediately before the onMouseDown event ...

Code executed immediately before the onMouseDown event

\n

Parameters

  • e : Event

    the mousedown event

    \n
Ext.dd.DragDrop
view source
( x, y )private
Code that executes immediately before the startDrag event ...

Code that executes immediately before the startDrag event

\n

Parameters

  • x : Object
    \n
  • y : Object
    \n
Ext.dd.DragDrop
view source
( )
Clears any constraints applied to this instance. ...

Clears any constraints applied to this instance. Also clears ticks\nsince they can't exist independent of a constraint at this time.

\n
Ext.dd.DragDrop
view source
( )
Clears any tick interval defined for this instance ...

Clears any tick interval defined for this instance

\n
Ext.dd.DragDrop
view source
( constrainTo, [pad], [inContent] )
Initializes the drag drop object's constraints to restrict movement to a certain element. ...

Initializes the drag drop object's constraints to restrict movement to a certain element.

\n\n

Usage:

\n\n
 var dd = new Ext.dd.DDProxy(\"dragDiv1\", \"proxytest\",\n                { dragElId: \"existingProxyDiv\" });\n dd.startDrag = function(){\n     this.constrainTo(\"parent-id\");\n };\n 
\n\n\n

Or you can initalize it using the Ext.Element object:

\n\n
 Ext.get(\"dragDiv1\").initDDProxy(\"proxytest\", {dragElId: \"existingProxyDiv\"}, {\n     startDrag : function(){\n         this.constrainTo(\"parent-id\");\n     }\n });\n 
\n\n

Parameters

  • constrainTo : Mixed

    The element to constrain to.

    \n
  • pad : Object/Number (optional)

    Pad provides a way to specify \"padding\" of the constraints,\nand can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or\nan object containing the sides to pad. For example: {right:10, bottom:10}

    \n
  • inContent : Boolean (optional)

    Constrain the draggable in the content box of the element (inside padding and borders)

    \n
Ext.dd.DragDrop
view source
( e )
Fired when we are done dragging the object ...

Fired when we are done dragging the object

\n

Parameters

  • e : Event

    the mouseup event

    \n
Ext.dd.DragDrop
view source
( ) : HTMLElement
Returns a reference to the actual element to drag. ...

Returns a reference to the actual element to drag. By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Ext.dd.DDProxy

\n

Returns

  • HTMLElement

    the html element

    \n
Ext.dd.DragDrop
view source
( ) : HTMLElement
Returns a reference to the linked element ...

Returns a reference to the linked element

\n

Returns

  • HTMLElement

    the html element

    \n
Ext.dd.DragDrop
view source
( val, tickArray ) : intprivate
Normally the drag element is moved pixel by pixel, but we can specify\nthat it move a number of pixels at a time. ...

Normally the drag element is moved pixel by pixel, but we can specify\nthat it move a number of pixels at a time. This method resolves the\nlocation when we have it set up like this.

\n

Parameters

  • val : int

    where we want to place the object

    \n
  • tickArray : int[]

    sorted array of valid points

    \n

Returns

  • int

    the closest tick

    \n
Ext.dd.DragDrop
view source
( e, oDD )private
Fired when this object is clicked ...

Fired when this object is clicked

\n

Parameters

Ext.dd.DragDrop
view source
( )private
Executed when the linked element is available ...

Executed when the linked element is available

\n
Ext.dd.DragDrop
view source
( id, sGroup, config )
Sets up the DragDrop object. ...

Sets up the DragDrop object. Must be called in the constructor of any\nExt.dd.DragDrop subclass

\n

Parameters

  • id : Object

    the id of the linked element

    \n
  • sGroup : String

    the group of related items

    \n
  • config : object

    configuration attributes

    \n
Ext.dd.DragDrop
view source
( id, sGroup, config )
Initializes Targeting functionality only... ...

Initializes Targeting functionality only... the object does not\nget a mousedown handler.

\n

Parameters

  • id : Object

    the id of the linked element

    \n
  • sGroup : String

    the group of related items

    \n
  • config : object

    configuration attributes

    \n
Ext.dd.DragDrop
view source
( ) : boolean
Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on th...

Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)

\n

Returns

  • boolean

    true if this obj or all drag/drop is locked, else\nfalse

    \n
Ext.dd.DragDrop
view source
( node ) : boolean
Checks the tag exclusion list to see if this click should be ignored ...

Checks the tag exclusion list to see if this click should be ignored

\n

Parameters

  • node : HTMLElement

    the HTMLElement to evaluate

    \n

Returns

  • boolean

    true if this is a valid tag type, false if not

    \n
Ext.dd.DragDrop
view source
( )
Lock this instance ...

Lock this instance

\n
Ext.dd.DragDrop
view source
( )
Override the onAvailable method to do what is needed after the initial\nposition was determined. ...

Override the onAvailable method to do what is needed after the initial\nposition was determined.

\n
Ext.dd.DragDrop
view source
( e )
Abstract method called during the onMouseMove event while dragging an\nobject. ...

Abstract method called during the onMouseMove event while dragging an\nobject.

\n

Parameters

  • e : Event

    the mousemove event

    \n
Ext.dd.DragDrop
view source
( e, id )
Abstract method called when this item is dropped on another DragDrop\nobj ...

Abstract method called when this item is dropped on another DragDrop\nobj

\n

Parameters

  • e : Event

    the mouseup event

    \n
  • id : String|DragDrop[]

    In POINT mode, the element\nid this was dropped on. In INTERSECT mode, an array of dd items this\nwas dropped on.

    \n
Ext.dd.DragDrop
view source
( e, id )
Abstract method called when this element fist begins hovering over\nanother DragDrop obj ...

Abstract method called when this element fist begins hovering over\nanother DragDrop obj

\n

Parameters

  • e : Event

    the mousemove event

    \n
  • id : String|DragDrop[]

    In POINT mode, the element\nid this is hovering over. In INTERSECT mode, an array of one or more\ndragdrop items being hovered over.

    \n
Ext.dd.DragDrop
view source
( e, id )
Abstract method called when we are no longer hovering over an element ...

Abstract method called when we are no longer hovering over an element

\n

Parameters

  • e : Event

    the mousemove event

    \n
  • id : String|DragDrop[]

    In POINT mode, the element\nid this was hovering over. In INTERSECT mode, an array of dd items\nthat the mouse is no longer over.

    \n
Ext.dd.DragDrop
view source
( e, id )
Abstract method called when this element is hovering over another\nDragDrop obj ...

Abstract method called when this element is hovering over another\nDragDrop obj

\n

Parameters

  • e : Event

    the mousemove event

    \n
  • id : String|DragDrop[]

    In POINT mode, the element\nid this is hovering over. In INTERSECT mode, an array of dd items\nbeing hovered over.

    \n
Ext.dd.DragDrop
view source
( e )
Abstract method called when this item is dropped on an area with no\ndrop target ...

Abstract method called when this item is dropped on an area with no\ndrop target

\n

Parameters

  • e : Event

    the mouseup event

    \n
Ext.dd.DragDrop
view source
( e )
Event handler that fires when a drag/drop obj gets a mousedown ...

Event handler that fires when a drag/drop obj gets a mousedown

\n

Parameters

  • e : Event

    the mousedown event

    \n
Ext.dd.DragDrop
view source
( e )
Event handler that fires when a drag/drop obj gets a mouseup ...

Event handler that fires when a drag/drop obj gets a mouseup

\n

Parameters

  • e : Event

    the mouseup event

    \n
Ext.dd.DragDrop
view source
( sGroup )
Remove's this instance from the supplied interaction group ...

Remove's this instance from the supplied interaction group

\n

Parameters

  • sGroup : string

    The group to drop

    \n
Ext.dd.DragDrop
view source
( cssClass )
Unsets an invalid css class ...

Unsets an invalid css class

\n

Parameters

  • cssClass : string

    the class of the element(s) you wish to\nre-enable

    \n
Unsets an invalid handle id ...

Unsets an invalid handle id

\n

Parameters

  • id : string

    the id of the element to re-enable

    \n
Ext.dd.DragDrop
view source
( tagName )
Unsets an excluded tag name set by addInvalidHandleType ...

Unsets an excluded tag name set by addInvalidHandleType

\n

Parameters

  • tagName : string

    the type of element to unexclude

    \n
Ext.dd.DragDrop
view source
( maintainOffset )
resetConstraints must be called if you manually reposition a dd element. ...

resetConstraints must be called if you manually reposition a dd element.

\n

Parameters

  • maintainOffset : boolean
    \n
Ext.dd.DragDrop
view source
( id )
Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag ...

Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag

\n

Parameters

  • id : Object

    {string} the id of the element that will be used to initiate the drag

    \n
Ext.dd.DragDrop
view source
( id )
Allows you to specify a child of the linked element that should be\nused to initiate the drag operation. ...

Allows you to specify a child of the linked element that should be\nused to initiate the drag operation. An example of this would be if\nyou have a content div with text and links. Clicking anywhere in the\ncontent area would normally start the drag operation. Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation.

\n

Parameters

  • id : Object

    {string} the id of the element that will be used to\ninitiate the drag.

    \n
Ext.dd.DragDrop
view source
( diffX, diffY )
Stores the initial placement of the linked element. ...

Stores the initial placement of the linked element.

\n

Parameters

  • diffX : int

    the X offset, default 0

    \n
  • diffY : int

    the Y offset, default 0

    \n
Ext.dd.DragDrop
view source
( id )
Allows you to set an element outside of the linked element as a drag\nhandle ...

Allows you to set an element outside of the linked element as a drag\nhandle

\n

Parameters

  • id : Object

    the id of the element that will be used to initiate the drag

    \n
Ext.dd.DragDrop
view source
( iTop, iRight, iBot, iLeft )
Configures the padding for the target zone in px. ...

Configures the padding for the target zone in px. Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second.

\n

Parameters

  • iTop : int

    Top pad

    \n
  • iRight : int

    Right pad

    \n
  • iBot : int

    Bot pad

    \n
  • iLeft : int

    Left pad

    \n
Ext.dd.DragDrop
view source
( pos )private
Sets the start position of the element. ...

Sets the start position of the element. This is set when the obj\nis initialized, the reset when a drag is started.

\n

Parameters

  • pos : Object

    current position (from previous lookup)

    \n
Ext.dd.DragDrop
view source
( iLeft, iRight, iTickSize )
By default, the element can be dragged any place on the screen. ...

By default, the element can be dragged any place on the screen. Use\nthis method to limit the horizontal travel of the element. Pass in\n0,0 for the parameters if you want to lock the drag to the y axis.

\n

Parameters

  • iLeft : int

    the number of pixels the element can move to the left

    \n
  • iRight : int

    the number of pixels the element can move to the\nright

    \n
  • iTickSize : int

    optional parameter for specifying that the\nelement\nshould move iTickSize pixels at a time.

    \n
Ext.dd.DragDrop
view source
( iStartX, iTickSize )private
Create the array of horizontal tick marks if an interval was specified\nin setXConstraint(). ...

Create the array of horizontal tick marks if an interval was specified\nin setXConstraint().

\n

Parameters

  • iStartX : Object
    \n
  • iTickSize : Object
    \n
Ext.dd.DragDrop
view source
( iUp, iDown, iTickSize )
By default, the element can be dragged any place on the screen. ...

By default, the element can be dragged any place on the screen. Set\nthis to limit the vertical travel of the element. Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis.

\n

Parameters

  • iUp : int

    the number of pixels the element can move up

    \n
  • iDown : int

    the number of pixels the element can move down

    \n
  • iTickSize : int

    optional parameter for specifying that the\nelement should move iTickSize pixels at a time.

    \n
Ext.dd.DragDrop
view source
( iStartY, iTickSize )private
Create the array of vertical tick marks if an interval was specified in\nsetYConstraint(). ...

Create the array of vertical tick marks if an interval was specified in\nsetYConstraint().

\n

Parameters

  • iStartY : Object
    \n
  • iTickSize : Object
    \n
Ext.dd.DragDrop
view source
( X, Y )
Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met. ...

Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.

\n

Parameters

  • X : int

    click location

    \n
  • Y : int

    click location

    \n
Ext.dd.DragDrop
view source
( ) : string
toString method ...

toString method

\n

Returns

  • string

    string representation of the dd obj

    \n
Ext.dd.DragDrop
view source
( )
Unlock this instace ...

Unlock this instace

\n
Ext.dd.DragDrop
view source
( )
Remove all drag and drop hooks for this element ...

Remove all drag and drop hooks for this element

\n
","superclasses":[],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[],"event":[],"css_mixin":[]},"files":[{"href":"DDCore.html#Ext-dd-DragDrop","filename":"DDCore.js"}],"linenr":14,"members":{"property":[{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"__ygDragDrop","id":"property-__ygDragDrop"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"_domRef","id":"property-_domRef"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"available","id":"property-available"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"config","id":"property-config"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"constrainX","id":"property-constrainX"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"constrainY","id":"property-constrainY"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"defaultPadding","id":"property-defaultPadding"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"dragElId","id":"property-dragElId"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"groups","id":"property-groups"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"handleElId","id":"property-handleElId"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"hasOuterHandles","id":"property-hasOuterHandles"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"id","id":"property-id"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"ignoreSelf","id":"property-ignoreSelf"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"invalidHandleClasses","id":"property-invalidHandleClasses"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"invalidHandleIds","id":"property-invalidHandleIds"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"invalidHandleTypes","id":"property-invalidHandleTypes"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"isTarget","id":"property-isTarget"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"locked","id":"property-locked"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"maintainOffset","id":"property-maintainOffset"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"maxX","id":"property-maxX"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"maxY","id":"property-maxY"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"minX","id":"property-minX"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"minY","id":"property-minY"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"moveOnly","id":"property-moveOnly"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"padding","id":"property-padding"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"primaryButtonOnly","id":"property-primaryButtonOnly"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"startPageX","id":"property-startPageX"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"startPageY","id":"property-startPageY"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"xTicks","id":"property-xTicks"},{"tagname":"property","owner":"Ext.dd.DragDrop","meta":{},"name":"yTicks","id":"property-yTicks"}],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"addInvalidHandleClass","id":"method-addInvalidHandleClass"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"addInvalidHandleId","id":"method-addInvalidHandleId"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"addInvalidHandleType","id":"method-addInvalidHandleType"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"addToGroup","id":"method-addToGroup"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"applyConfig","id":"method-applyConfig"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"b4Drag","id":"method-b4Drag"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"b4DragDrop","id":"method-b4DragDrop"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"b4DragOut","id":"method-b4DragOut"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"b4DragOver","id":"method-b4DragOver"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"b4EndDrag","id":"method-b4EndDrag"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"b4MouseDown","id":"method-b4MouseDown"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"b4StartDrag","id":"method-b4StartDrag"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"clearConstraints","id":"method-clearConstraints"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"clearTicks","id":"method-clearTicks"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"constrainTo","id":"method-constrainTo"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"endDrag","id":"method-endDrag"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"getDragEl","id":"method-getDragEl"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"getEl","id":"method-getEl"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"getTick","id":"method-getTick"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"handleMouseDown","id":"method-handleMouseDown"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"handleOnAvailable","id":"method-handleOnAvailable"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"init","id":"method-init"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"initTarget","id":"method-initTarget"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"isLocked","id":"method-isLocked"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"isValidHandleChild","id":"method-isValidHandleChild"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"lock","id":"method-lock"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onAvailable","id":"method-onAvailable"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onDrag","id":"method-onDrag"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onDragDrop","id":"method-onDragDrop"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onDragEnter","id":"method-onDragEnter"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onDragOut","id":"method-onDragOut"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onDragOver","id":"method-onDragOver"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onInvalidDrop","id":"method-onInvalidDrop"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onMouseDown","id":"method-onMouseDown"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"onMouseUp","id":"method-onMouseUp"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"removeFromGroup","id":"method-removeFromGroup"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"removeInvalidHandleClass","id":"method-removeInvalidHandleClass"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"removeInvalidHandleId","id":"method-removeInvalidHandleId"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"removeInvalidHandleType","id":"method-removeInvalidHandleType"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"resetConstraints","id":"method-resetConstraints"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"setDragElId","id":"method-setDragElId"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"setHandleElId","id":"method-setHandleElId"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"setInitPosition","id":"method-setInitPosition"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"setOuterHandleElId","id":"method-setOuterHandleElId"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"setPadding","id":"method-setPadding"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"setStartPosition","id":"method-setStartPosition"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"setXConstraint","id":"method-setXConstraint"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"setXTicks","id":"method-setXTicks"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"setYConstraint","id":"method-setYConstraint"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{"private":true},"name":"setYTicks","id":"method-setYTicks"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"startDrag","id":"method-startDrag"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"toString","id":"method-toString"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"unlock","id":"method-unlock"},{"tagname":"method","owner":"Ext.dd.DragDrop","meta":{},"name":"unreg","id":"method-unreg"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.dd.DragDrop","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.dd.DragDrop","mixins":[],"mixedInto":[]});