Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / api / Ext.dd.DragDrop.html
1 <!DOCTYPE html><html><head><title>Ext.dd.DragDrop | Ext JS 4.0 Documentation</title><script type="text/javascript" src="../ext-all.js"></script><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../scrollbars.css" type="text/css"><link rel="stylesheet" href="../docs.css" type="text/css"><link id="styleCss" rel="stylesheet" href="../style.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script><link rel="stylesheet" href="../prettify.css" type="text/css"><!-- link(rel: 'stylesheet', href: req.baseURL + '/css/ext4.css', type: 'text/css')--><link rel="shortcut icon" type="image/ico" href="../favicon.ico"><!--[if IE]>
2 <style type="text/css">.head-band { display: none; }
3 .header { border: 0; top: 0; left: 0px; background: url(../header.gif) repeat-x; }
4 .doc-tab .members .member a.more { background-color: #efefef; }
5 </style><link rel="stylesheet" href="/new/css/ie.css" type="text/css"><![endif]-->
6 </head><body id="ext-body" class="iScroll"><div id="notice" class="notice">For up to date documentation and features, visit 
7 <a href="http://docs.sencha.com/ext-js/4-0">http://docs.sencha.com/ext-js/4-0</a></div><div class="wrapper"><div class="head-band"></div><div class="header"><h2><a href="../index.html">Sencha Documentation</a></h2></div><div id="search"><form><input type="text" placeholder="Search" id="search-field" autocomplete="off" name="q"></form><div id="search-box"></div></div><div id="treePanel"></div><div id="container"><script type="text/javascript">
8
9     req = {
10         liveURL: '.',
11         standAloneMode: true,
12         origDocClass: 'Ext.dd.DragDrop',
13         docClass: 'Ext.dd.DragDrop',
14         docReq: 'Ext.dd.DragDrop',
15         version: '4.0',
16         baseURL: '.',
17         baseDocURL: '.',
18         baseProdURL: '.'
19     };
20
21     clsInfo = {};
22
23
24
25 </script>
26
27 <script type="text/javascript" src="../search.js"></script>
28 <!--script type="text/javascript" src="/new/javascripts/app/examples.js"></script-->
29 <script type="text/javascript" src="../class_tree.js"></script>
30 <script type="text/javascript" src="../class_doc.js"></script>
31 <script type="text/javascript">
32     req.source = 'DragDrop.html#Ext-dd.DragDrop';
33     clsInfo = {"methods":["DragDrop","addInvalidHandleClass","addInvalidHandleId","addInvalidHandleType","addToGroup","applyConfig","clearConstraints","clearTicks","constrainTo","endDrag","getDragEl","getEl","init","initTarget","isLocked","isValidHandleChild","lock","onAvailable","onDrag","onDragDrop","onDragEnter","onDragOut","onDragOver","onInvalidDrop","onMouseDown","onMouseUp","removeFromGroup","removeInvalidHandleClass","removeInvalidHandleId","removeInvalidHandleType","resetConstraints","setDragElId","setHandleElId","setInitPosition","setOuterHandleElId","setPadding","setXConstraint","setYConstraint","startDrag","toString","unlock","unreg"],"cfgs":[],"properties":["available","config","defaultPadding","groups","hasOuterHandles","id","ignoreSelf","invalidHandleClasses","invalidHandleIds","invalidHandleTypes","isTarget","maintainOffset","moveOnly","padding","primaryButtonOnly","xTicks","yTicks"],"events":[],"subclasses":["Ext.dd.DD","Ext.dd.DDTarget"]};
34     Ext.onReady(function() {
35         Ext.create('Docs.classPanel');
36     });
37 </script><div id="top-block" class="top-block"><h1 id="clsTitle" class="cls"><a href="../source/DragDrop.html#Ext-dd.DragDrop" target="_blank">Ext.dd.DragDrop</a></h1></div><div id="docContent"><div id="doc-overview-content"><div class="lft"><p>Defines the interface and base operation of items that that can be
38 dragged or can be drop targets.  It was designed to be extended, overriding
39 the event handlers for startDrag, onDrag, onDragOver and onDragOut.
40 Up to three html elements can be associated with a DragDrop instance:</p>
41
42 <ul>
43 <li>linked element: the element that is passed into the constructor.
44 This is the element which defines the boundaries for interaction with
45 other DragDrop objects.</li>
46 <li>handle element(s): The drag operation only occurs if the element that
47 was clicked matches a handle element.  By default this is the linked
48 element, but there are times that you will want only a portion of the
49 linked element to initiate the drag operation, and the setHandleElId()
50 method provides a way to define this.</li>
51 <li>drag element: this represents the element that would be moved along
52 with the cursor during a drag operation.  By default, this is the linked
53 element itself as in <a href="Ext.dd.DD.html" rel="Ext.dd.DD" class="docClass">Ext.dd.DD</a>.  setDragElId() lets you define
54 a separate element that would be moved, as in <a href="Ext.dd.DDProxy.html" rel="Ext.dd.DDProxy" class="docClass">Ext.dd.DDProxy</a>.
55 </li>
56 </ul>
57
58
59 <p>This class should not be instantiated until the onload event to ensure that
60 the associated elements are available.
61 The following would define a DragDrop obj that would interact with any
62 other DragDrop obj in the "group1" group:</p>
63
64 <pre class="prettyprint"> dd = new Ext.dd.DragDrop("div1", "group1");
65 </pre>
66
67
68 <p>Since none of the event handlers have been implemented, nothing would
69 actually happen if you were to run the code above.  Normally you would
70 override this class or one of the default implementations, but you can
71 also override the methods you want on an instance of the class...</p>
72
73 <pre class="prettyprint"> dd.onDragDrop = function(e, id) {
74  &nbsp;&nbsp;alert("dd was dropped on " + id);
75  }
76 </pre>
77
78 <div class="members"><div class="m-properties"><a name="properties"></a><div class="definedBy">Defined By</div><h3 class="prp p">Properties</h3><div id="property-available" class="member f ni"><a href="Ext.dd.DragDrop.html#property-available" rel="property-available" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-available" class="viewSource">view source</a></div><a name="available"></a><a name="property-available"></a><a href="Ext.dd.DragDrop.html#" rel="property-available" class="cls expand">available</a><span> : boolean</span></div><div class="description"><div class="short"><p>The available property is false until the linked dom element is accessible.</p>
79 </div><div class="long"><p>The available property is false until the linked dom element is accessible.</p>
80 </div></div></div><div id="property-config" class="member ni"><a href="Ext.dd.DragDrop.html#property-config" rel="property-config" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-config" class="viewSource">view source</a></div><a name="config"></a><a name="property-config"></a><a href="Ext.dd.DragDrop.html#" rel="property-config" class="cls expand">config</a><span> : object</span></div><div class="description"><div class="short"><p>Configuration attributes passed into the constructor</p>
81 </div><div class="long"><p>Configuration attributes passed into the constructor</p>
82 </div></div></div><div id="property-defaultPadding" class="member ni"><a href="Ext.dd.DragDrop.html#property-defaultPadding" rel="property-defaultPadding" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-defaultPadding" class="viewSource">view source</a></div><a name="defaultPadding"></a><a name="property-defaultPadding"></a><a href="Ext.dd.DragDrop.html#" rel="property-defaultPadding" class="cls expand">defaultPadding</a><span> : Object</span></div><div class="description"><div class="short"><p>Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).</p>
83 </div><div class="long"><p>Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).</p>
84 </div></div></div><div id="property-groups" class="member ni"><a href="Ext.dd.DragDrop.html#property-groups" rel="property-groups" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-groups" class="viewSource">view source</a></div><a name="groups"></a><a name="property-groups"></a><a href="Ext.dd.DragDrop.html#" rel="property-groups" class="cls expand">groups</a><span> : object</span></div><div class="description"><div class="short">The group defines a logical collection of DragDrop objects that are
85 related.  Instances only get events when interact...</div><div class="long"><p>The group defines a logical collection of DragDrop objects that are
86 related.  Instances only get events when interacting with other
87 DragDrop object in the same group.  This lets us define multiple
88 groups using a single DragDrop subclass if we want. An object in the format {'group1':true, 'group2':true}</p>
89 </div></div></div><div id="property-hasOuterHandles" class="member ni"><a href="Ext.dd.DragDrop.html#property-hasOuterHandles" rel="property-hasOuterHandles" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-hasOuterHandles" class="viewSource">view source</a></div><a name="hasOuterHandles"></a><a name="property-hasOuterHandles"></a><a href="Ext.dd.DragDrop.html#" rel="property-hasOuterHandles" class="cls expand">hasOuterHandles</a><span> : boolean</span></div><div class="description"><div class="short">By default, drags can only be initiated if the mousedown occurs in the
90 region the linked element is.  This is done in...</div><div class="long"><p>By default, drags can only be initiated if the mousedown occurs in the
91 region the linked element is.  This is done in part to work around a
92 bug in some browsers that mis-report the mousedown if the previous
93 mouseup happened outside of the window.  This property is set to true
94 if outer handles are defined. @default false</p>
95 </div></div></div><div id="property-id" class="member ni"><a href="Ext.dd.DragDrop.html#property-id" rel="property-id" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-id" class="viewSource">view source</a></div><a name="id"></a><a name="property-id"></a><a href="Ext.dd.DragDrop.html#" rel="property-id" class="cls expand">id</a><span> : String</span></div><div class="description"><div class="short">The id of the element associated with this object.  This is what we
96 refer to as the "linked element" because the size...</div><div class="long"><p>The id of the element associated with this object.  This is what we
97 refer to as the "linked element" because the size and position of
98 this element is used to determine when the drag and drop objects have
99 interacted.</p>
100 </div></div></div><div id="property-ignoreSelf" class="member ni"><a href="Ext.dd.DragDrop.html#property-ignoreSelf" rel="property-ignoreSelf" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-ignoreSelf" class="viewSource">view source</a></div><a name="ignoreSelf"></a><a name="property-ignoreSelf"></a><a href="Ext.dd.DragDrop.html#" rel="property-ignoreSelf" class="cls expand">ignoreSelf</a><span> : Boolean</span></div><div class="description"><div class="short">Set to false to enable a DragDrop object to fire drag events while dragging
101 over its own Element. Defaults to true - ...</div><div class="long"><p>Set to false to enable a DragDrop object to fire drag events while dragging
102 over its own Element. Defaults to true - DragDrop objects do not by default
103 fire drag events to themselves.</p>
104 </div></div></div><div id="property-invalidHandleClasses" class="member ni"><a href="Ext.dd.DragDrop.html#property-invalidHandleClasses" rel="property-invalidHandleClasses" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-invalidHandleClasses" class="viewSource">view source</a></div><a name="invalidHandleClasses"></a><a name="property-invalidHandleClasses"></a><a href="Ext.dd.DragDrop.html#" rel="property-invalidHandleClasses" class="cls expand">invalidHandleClasses</a><span> : Array</span></div><div class="description"><div class="short"><p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>
105 </div><div class="long"><p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>
106 </div></div></div><div id="property-invalidHandleIds" class="member ni"><a href="Ext.dd.DragDrop.html#property-invalidHandleIds" rel="property-invalidHandleIds" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-invalidHandleIds" class="viewSource">view source</a></div><a name="invalidHandleIds"></a><a name="property-invalidHandleIds"></a><a href="Ext.dd.DragDrop.html#" rel="property-invalidHandleIds" class="cls expand">invalidHandleIds</a><span> : Object</span></div><div class="description"><div class="short">An object who's property names identify the IDs of elements to be considered invalid as drag handles.
107 A non-null prop...</div><div class="long"><p>An object who's property names identify the IDs of elements to be considered invalid as drag handles.
108 A non-null property value identifies the ID as invalid. For example, to prevent
109 dragging from being initiated on element ID "foo", use:</p>
110
111 <pre><code>{
112     foo: true
113 }</code></pre>
114
115 </div></div></div><div id="property-invalidHandleTypes" class="member ni"><a href="Ext.dd.DragDrop.html#property-invalidHandleTypes" rel="property-invalidHandleTypes" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-invalidHandleTypes" class="viewSource">view source</a></div><a name="invalidHandleTypes"></a><a name="property-invalidHandleTypes"></a><a href="Ext.dd.DragDrop.html#" rel="property-invalidHandleTypes" class="cls expand">invalidHandleTypes</a><span> : Object</span></div><div class="description"><div class="short">An object who's property names identify HTML tags to be considered invalid as drag handles.
116 A non-null property value...</div><div class="long"><p>An object who's property names identify HTML tags to be considered invalid as drag handles.
117 A non-null property value identifies the tag as invalid. Defaults to the
118 following value which prevents drag operations from being initiated by &lt;a> elements:</p>
119
120 <pre><code>{
121     A: "A"
122 }</code></pre>
123
124 </div></div></div><div id="property-isTarget" class="member ni"><a href="Ext.dd.DragDrop.html#property-isTarget" rel="property-isTarget" class="expand more"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-isTarget" class="viewSource">view source</a></div><a name="isTarget"></a><a name="property-isTarget"></a><a href="Ext.dd.DragDrop.html#" rel="property-isTarget" class="cls expand">isTarget</a><span> : boolean</span></div><div class="description"><div class="short"><p>By default, all instances can be a drop target.  This can be disabled by
125 setting isTarget to false.</p>
126 </div><div class="long"><p>By default, all instances can be a drop target.  This can be disabled by
127 setting isTarget to false.</p>
128 </div></div></div><div id="property-maintainOffset" class="member ni"><a href="Ext.dd.DragDrop.html#property-maintainOffset" rel="property-maintainOffset" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-maintainOffset" class="viewSource">view source</a></div><a name="maintainOffset"></a><a name="property-maintainOffset"></a><a href="Ext.dd.DragDrop.html#" rel="property-maintainOffset" class="cls expand">maintainOffset</a><span> : boolean</span></div><div class="description"><div class="short">Maintain offsets when we resetconstraints.  Set to true when you want
129 the position of the element relative to its par...</div><div class="long"><p>Maintain offsets when we resetconstraints.  Set to true when you want
130 the position of the element relative to its parent to stay the same
131 when the page changes</p>
132 </div></div></div><div id="property-moveOnly" class="member ni"><a href="Ext.dd.DragDrop.html#property-moveOnly" rel="property-moveOnly" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-moveOnly" class="viewSource">view source</a></div><a name="moveOnly"></a><a name="property-moveOnly"></a><a href="Ext.dd.DragDrop.html#" rel="property-moveOnly" class="cls expand">moveOnly</a><span> : boolean</span></div><div class="description"><div class="short">When set to true, other DD objects in cooperating DDGroups do not receive
133 notification events when this DD object is ...</div><div class="long"><p>When set to true, other DD objects in cooperating DDGroups do not receive
134 notification events when this DD object is dragged over them. Defaults to false.</p>
135 </div></div></div><div id="property-padding" class="member ni"><a href="Ext.dd.DragDrop.html#property-padding" rel="property-padding" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-padding" class="viewSource">view source</a></div><a name="padding"></a><a name="property-padding"></a><a href="Ext.dd.DragDrop.html#" rel="property-padding" class="cls expand">padding</a><span> : int[]</span></div><div class="description"><div class="short">The padding configured for this drag and drop object for calculating
136 the drop zone intersection with this object. An ...</div><div class="long"><p>The padding configured for this drag and drop object for calculating
137 the drop zone intersection with this object. An array containing the 4 padding values: [top, right, bottom, left]</p>
138 </div></div></div><div id="property-primaryButtonOnly" class="member ni"><a href="Ext.dd.DragDrop.html#property-primaryButtonOnly" rel="property-primaryButtonOnly" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-primaryButtonOnly" class="viewSource">view source</a></div><a name="primaryButtonOnly"></a><a name="property-primaryButtonOnly"></a><a href="Ext.dd.DragDrop.html#" rel="property-primaryButtonOnly" class="cls expand">primaryButtonOnly</a><span> : boolean</span></div><div class="description"><div class="short">By default the drag and drop instance will only respond to the primary
139 button click (left button for a right-handed m...</div><div class="long"><p>By default the drag and drop instance will only respond to the primary
140 button click (left button for a right-handed mouse).  Set to true to
141 allow drag and drop to start with any mouse click that is propogated
142 by the browser</p>
143 </div></div></div><div id="property-xTicks" class="member ni"><a href="Ext.dd.DragDrop.html#property-xTicks" rel="property-xTicks" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-xTicks" class="viewSource">view source</a></div><a name="xTicks"></a><a name="property-xTicks"></a><a href="Ext.dd.DragDrop.html#" rel="property-xTicks" class="cls expand">xTicks</a><span> : int[]</span></div><div class="description"><div class="short">Array of pixel locations the element will snap to if we specified a
144 horizontal graduation/interval.  This array is ge...</div><div class="long"><p>Array of pixel locations the element will snap to if we specified a
145 horizontal graduation/interval.  This array is generated automatically
146 when you define a tick interval.</p>
147 </div></div></div><div id="property-yTicks" class="member ni"><a href="Ext.dd.DragDrop.html#property-yTicks" rel="property-yTicks" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-property-yTicks" class="viewSource">view source</a></div><a name="yTicks"></a><a name="property-yTicks"></a><a href="Ext.dd.DragDrop.html#" rel="property-yTicks" class="cls expand">yTicks</a><span> : int[]</span></div><div class="description"><div class="short">Array of pixel locations the element will snap to if we specified a
148 vertical graduation/interval.  This array is gene...</div><div class="long"><p>Array of pixel locations the element will snap to if we specified a
149 vertical graduation/interval.  This array is generated automatically
150 when you define a tick interval.</p>
151 </div></div></div></div><div class="m-methods"><a name="methods"></a><div class="definedBy">Defined By</div><h3 class="mth p">Methods</h3><div id="method-DragDrop" class="member f ni"><a href="Ext.dd.DragDrop.html#method-DragDrop" rel="method-DragDrop" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-constructor" class="viewSource">view source</a></div><a name="DragDrop"></a><a name="method-DragDrop"></a><a href="Ext.dd.DragDrop.html#" rel="method-DragDrop" class="cls expand">DragDrop</a>(
152 <span class="pre">String id, String sGroup, object config</span>)
153  : void</div><div class="description"><div class="short"><p>&nbsp;</p></div><div class="long">
154 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : String<div class="sub-desc"><p>of the element that is linked to this instance</p>
155 </div></li><li><span class="pre">sGroup</span> : String<div class="sub-desc"><p>the group of related DragDrop objects</p>
156 </div></li><li><span class="pre">config</span> : object<div class="sub-desc"><p>an object containing configurable attributes</p>
157
158 <pre><code>           Valid properties for DragDrop:
159                padding, isTarget, maintainOffset, primaryButtonOnly
160 </code></pre>
161 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
162 </li></ul></div></div></div><div id="method-addInvalidHandleClass" class="member ni"><a href="Ext.dd.DragDrop.html#method-addInvalidHandleClass" rel="method-addInvalidHandleClass" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-addInvalidHandleClass" class="viewSource">view source</a></div><a name="addInvalidHandleClass"></a><a name="method-addInvalidHandleClass"></a><a href="Ext.dd.DragDrop.html#" rel="method-addInvalidHandleClass" class="cls expand">addInvalidHandleClass</a>(
163 <span class="pre">string cssClass</span>)
164  : void</div><div class="description"><div class="short"><p>Lets you specify a css class of elements that will not initiate a drag</p>
165 </div><div class="long"><p>Lets you specify a css class of elements that will not initiate a drag</p>
166 <h3 class="pa">Parameters</h3><ul><li><span class="pre">cssClass</span> : string<div class="sub-desc"><p>the class of the elements you wish to ignore</p>
167 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
168 </li></ul></div></div></div><div id="method-addInvalidHandleId" class="member ni"><a href="Ext.dd.DragDrop.html#method-addInvalidHandleId" rel="method-addInvalidHandleId" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-addInvalidHandleId" class="viewSource">view source</a></div><a name="addInvalidHandleId"></a><a name="method-addInvalidHandleId"></a><a href="Ext.dd.DragDrop.html#" rel="method-addInvalidHandleId" class="cls expand">addInvalidHandleId</a>(
169 <span class="pre">string id</span>)
170  : void</div><div class="description"><div class="short"><p>Lets you to specify an element id for a child of a drag handle
171 that should not initiate a drag</p>
172 </div><div class="long"><p>Lets you to specify an element id for a child of a drag handle
173 that should not initiate a drag</p>
174 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : string<div class="sub-desc"><p>the element id of the element you wish to ignore</p>
175 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
176 </li></ul></div></div></div><div id="method-addInvalidHandleType" class="member ni"><a href="Ext.dd.DragDrop.html#method-addInvalidHandleType" rel="method-addInvalidHandleType" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-addInvalidHandleType" class="viewSource">view source</a></div><a name="addInvalidHandleType"></a><a name="method-addInvalidHandleType"></a><a href="Ext.dd.DragDrop.html#" rel="method-addInvalidHandleType" class="cls expand">addInvalidHandleType</a>(
177 <span class="pre">string tagName</span>)
178  : void</div><div class="description"><div class="short">Allows you to specify a tag name that should not start a drag operation
179 when clicked.  This is designed to facilitate...</div><div class="long"><p>Allows you to specify a tag name that should not start a drag operation
180 when clicked.  This is designed to facilitate embedding links within a
181 drag handle that do something other than start the drag.</p>
182 <h3 class="pa">Parameters</h3><ul><li><span class="pre">tagName</span> : string<div class="sub-desc"><p>the type of element to exclude</p>
183 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
184 </li></ul></div></div></div><div id="method-addToGroup" class="member ni"><a href="Ext.dd.DragDrop.html#method-addToGroup" rel="method-addToGroup" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-addToGroup" class="viewSource">view source</a></div><a name="addToGroup"></a><a name="method-addToGroup"></a><a href="Ext.dd.DragDrop.html#" rel="method-addToGroup" class="cls expand">addToGroup</a>(
185 <span class="pre">Object sGroup</span>)
186  : void</div><div class="description"><div class="short">Add this instance to a group of related drag/drop objects.  All
187 instances belong to at least one group, and can belon...</div><div class="long"><p>Add this instance to a group of related drag/drop objects.  All
188 instances belong to at least one group, and can belong to as many
189 groups as needed.</p>
190 <h3 class="pa">Parameters</h3><ul><li><span class="pre">sGroup</span> : Object<div class="sub-desc"><p>{string} the name of the group</p>
191 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
192 </li></ul></div></div></div><div id="method-applyConfig" class="member ni"><a href="Ext.dd.DragDrop.html#method-applyConfig" rel="method-applyConfig" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-applyConfig" class="viewSource">view source</a></div><a name="applyConfig"></a><a name="method-applyConfig"></a><a href="Ext.dd.DragDrop.html#" rel="method-applyConfig" class="cls expand">applyConfig</a> : void</div><div class="description"><div class="short">Applies the configuration parameters that were passed into the constructor.
193 This is supposed to happen at each level ...</div><div class="long"><p>Applies the configuration parameters that were passed into the constructor.
194 This is supposed to happen at each level through the inheritance chain.  So
195 a DDProxy implentation will execute apply config on DDProxy, DD, and
196 DragDrop in order to get all of the parameters that are available in
197 each object.</p>
198 <h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
199 </li></ul></div></div></div><div id="method-clearConstraints" class="member ni"><a href="Ext.dd.DragDrop.html#method-clearConstraints" rel="method-clearConstraints" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-clearConstraints" class="viewSource">view source</a></div><a name="clearConstraints"></a><a name="method-clearConstraints"></a><a href="Ext.dd.DragDrop.html#" rel="method-clearConstraints" class="cls expand">clearConstraints</a> : void</div><div class="description"><div class="short">Clears any constraints applied to this instance.  Also clears ticks
200 since they can't exist independent of a constrain...</div><div class="long"><p>Clears any constraints applied to this instance.  Also clears ticks
201 since they can't exist independent of a constraint at this time.</p>
202 <h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
203 </li></ul></div></div></div><div id="method-clearTicks" class="member ni"><a href="Ext.dd.DragDrop.html#method-clearTicks" rel="method-clearTicks" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-clearTicks" class="viewSource">view source</a></div><a name="clearTicks"></a><a name="method-clearTicks"></a><a href="Ext.dd.DragDrop.html#" rel="method-clearTicks" class="cls expand">clearTicks</a> : void</div><div class="description"><div class="short"><p>Clears any tick interval defined for this instance</p>
204 </div><div class="long"><p>Clears any tick interval defined for this instance</p>
205 <h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
206 </li></ul></div></div></div><div id="method-constrainTo" class="member ni"><a href="Ext.dd.DragDrop.html#method-constrainTo" rel="method-constrainTo" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-constrainTo" class="viewSource">view source</a></div><a name="constrainTo"></a><a name="method-constrainTo"></a><a href="Ext.dd.DragDrop.html#" rel="method-constrainTo" class="cls expand">constrainTo</a>(
207 <span class="pre">Mixed constrainTo, [Object/Number pad], [Boolean inContent]</span>)
208  : void</div><div class="description"><div class="short">Initializes the drag drop object's constraints to restrict movement to a certain element.
209
210 Usage:
211
212  var dd = new Ext....</div><div class="long"><p>Initializes the drag drop object's constraints to restrict movement to a certain element.</p>
213
214 <p>Usage:</p>
215
216 <pre><code> var dd = new Ext.dd.DDProxy("dragDiv1", "proxytest",
217                 { dragElId: "existingProxyDiv" });
218  dd.startDrag = function(){
219      this.constrainTo("parent-id");
220  };
221  </code></pre>
222
223
224 <p>Or you can initalize it using the <a href="Ext.core.Element.html" rel="Ext.core.Element" class="docClass">Ext.core.Element</a> object:</p>
225
226 <pre><code> Ext.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
227      startDrag : function(){
228          this.constrainTo("parent-id");
229      }
230  });
231  </code></pre>
232
233 <h3 class="pa">Parameters</h3><ul><li><span class="pre">constrainTo</span> : Mixed<div class="sub-desc"><p>The element to constrain to.</p>
234 </div></li><li><span class="pre">pad</span> : Object/Number<div class="sub-desc"><p>(optional) Pad provides a way to specify "padding" of the constraints,
235 and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
236 an object containing the sides to pad. For example: {right:10, bottom:10}</p>
237 </div></li><li><span class="pre">inContent</span> : Boolean<div class="sub-desc"><p>(optional) Constrain the draggable in the content box of the element (inside padding and borders)</p>
238 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
239 </li></ul></div></div></div><div id="method-endDrag" class="member ni"><a href="Ext.dd.DragDrop.html#method-endDrag" rel="method-endDrag" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-endDrag" class="viewSource">view source</a></div><a name="endDrag"></a><a name="method-endDrag"></a><a href="Ext.dd.DragDrop.html#" rel="method-endDrag" class="cls expand">endDrag</a>(
240 <span class="pre">Event e</span>)
241  : void</div><div class="description"><div class="short"><p>Fired when we are done dragging the object</p>
242 </div><div class="long"><p>Fired when we are done dragging the object</p>
243 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mouseup event</p>
244 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
245 </li></ul></div></div></div><div id="method-getDragEl" class="member ni"><a href="Ext.dd.DragDrop.html#method-getDragEl" rel="method-getDragEl" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-getDragEl" class="viewSource">view source</a></div><a name="getDragEl"></a><a name="method-getDragEl"></a><a href="Ext.dd.DragDrop.html#" rel="method-getDragEl" class="cls expand">getDragEl</a> : HTMLElement</div><div class="description"><div class="short">Returns a reference to the actual element to drag.  By default this is
246 the same as the html element, but it can be as...</div><div class="long"><p>Returns a reference to the actual element to drag.  By default this is
247 the same as the html element, but it can be assigned to another
248 element. An example of this can be found in Ext.dd.DDProxy</p>
249 <h3 class="pa">Returns</h3><ul><li><span class="pre">HTMLElement</span>&nbsp; &nbsp;<p>the html element</p>
250 </li></ul></div></div></div><div id="method-getEl" class="member ni"><a href="Ext.dd.DragDrop.html#method-getEl" rel="method-getEl" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-getEl" class="viewSource">view source</a></div><a name="getEl"></a><a name="method-getEl"></a><a href="Ext.dd.DragDrop.html#" rel="method-getEl" class="cls expand">getEl</a> : HTMLElement</div><div class="description"><div class="short"><p>Returns a reference to the linked element</p>
251 </div><div class="long"><p>Returns a reference to the linked element</p>
252 <h3 class="pa">Returns</h3><ul><li><span class="pre">HTMLElement</span>&nbsp; &nbsp;<p>the html element</p>
253 </li></ul></div></div></div><div id="method-init" class="member ni"><a href="Ext.dd.DragDrop.html#method-init" rel="method-init" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-init" class="viewSource">view source</a></div><a name="init"></a><a name="method-init"></a><a href="Ext.dd.DragDrop.html#" rel="method-init" class="cls expand">init</a>(
254 <span class="pre">Object id, String sGroup, object config</span>)
255  : void</div><div class="description"><div class="short"><p>Sets up the DragDrop object.  Must be called in the constructor of any
256 <a href="Ext.dd.DragDrop.html" rel="Ext.dd.DragDrop" class="docClass">Ext.dd.DragDrop</a> subclass</p>
257 </div><div class="long"><p>Sets up the DragDrop object.  Must be called in the constructor of any
258 <a href="Ext.dd.DragDrop.html" rel="Ext.dd.DragDrop" class="docClass">Ext.dd.DragDrop</a> subclass</p>
259 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : Object<div class="sub-desc"><p>the id of the linked element</p>
260 </div></li><li><span class="pre">sGroup</span> : String<div class="sub-desc"><p>the group of related items</p>
261 </div></li><li><span class="pre">config</span> : object<div class="sub-desc"><p>configuration attributes</p>
262 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
263 </li></ul></div></div></div><div id="method-initTarget" class="member ni"><a href="Ext.dd.DragDrop.html#method-initTarget" rel="method-initTarget" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-initTarget" class="viewSource">view source</a></div><a name="initTarget"></a><a name="method-initTarget"></a><a href="Ext.dd.DragDrop.html#" rel="method-initTarget" class="cls expand">initTarget</a>(
264 <span class="pre">Object id, String sGroup, object config</span>)
265  : void</div><div class="description"><div class="short"><p>Initializes Targeting functionality only... the object does not
266 get a mousedown handler.</p>
267 </div><div class="long"><p>Initializes Targeting functionality only... the object does not
268 get a mousedown handler.</p>
269 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : Object<div class="sub-desc"><p>the id of the linked element</p>
270 </div></li><li><span class="pre">sGroup</span> : String<div class="sub-desc"><p>the group of related items</p>
271 </div></li><li><span class="pre">config</span> : object<div class="sub-desc"><p>configuration attributes</p>
272 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
273 </li></ul></div></div></div><div id="method-isLocked" class="member ni"><a href="Ext.dd.DragDrop.html#method-isLocked" rel="method-isLocked" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-isLocked" class="viewSource">view source</a></div><a name="isLocked"></a><a name="method-isLocked"></a><a href="Ext.dd.DragDrop.html#" rel="method-isLocked" class="cls expand">isLocked</a> : boolean</div><div class="description"><div class="short">Returns true if this instance is locked, or the drag drop mgr is locked
274 (meaning that all drag/drop is disabled on th...</div><div class="long"><p>Returns true if this instance is locked, or the drag drop mgr is locked
275 (meaning that all drag/drop is disabled on the page.)</p>
276 <h3 class="pa">Returns</h3><ul><li><span class="pre">boolean</span>&nbsp; &nbsp;<p>true if this obj or all drag/drop is locked, else
277 false</p>
278 </li></ul></div></div></div><div id="method-isValidHandleChild" class="member ni"><a href="Ext.dd.DragDrop.html#method-isValidHandleChild" rel="method-isValidHandleChild" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-isValidHandleChild" class="viewSource">view source</a></div><a name="isValidHandleChild"></a><a name="method-isValidHandleChild"></a><a href="Ext.dd.DragDrop.html#" rel="method-isValidHandleChild" class="cls expand">isValidHandleChild</a>(
279 <span class="pre">HTMLElement node</span>)
280  : boolean</div><div class="description"><div class="short"><p>Checks the tag exclusion list to see if this click should be ignored</p>
281 </div><div class="long"><p>Checks the tag exclusion list to see if this click should be ignored</p>
282 <h3 class="pa">Parameters</h3><ul><li><span class="pre">node</span> : HTMLElement<div class="sub-desc"><p>the HTMLElement to evaluate</p>
283 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">boolean</span>&nbsp; &nbsp;<p>true if this is a valid tag type, false if not</p>
284 </li></ul></div></div></div><div id="method-lock" class="member ni"><a href="Ext.dd.DragDrop.html#method-lock" rel="method-lock" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-lock" class="viewSource">view source</a></div><a name="lock"></a><a name="method-lock"></a><a href="Ext.dd.DragDrop.html#" rel="method-lock" class="cls expand">lock</a> : void</div><div class="description"><div class="short"><p>Lock this instance</p>
285 </div><div class="long"><p>Lock this instance</p>
286 <h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
287 </li></ul></div></div></div><div id="method-onAvailable" class="member ni"><a href="Ext.dd.DragDrop.html#method-onAvailable" rel="method-onAvailable" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onAvailable" class="viewSource">view source</a></div><a name="onAvailable"></a><a name="method-onAvailable"></a><a href="Ext.dd.DragDrop.html#" rel="method-onAvailable" class="cls expand">onAvailable</a> : void</div><div class="description"><div class="short"><p>Override the onAvailable method to do what is needed after the initial
288 position was determined.</p>
289 </div><div class="long"><p>Override the onAvailable method to do what is needed after the initial
290 position was determined.</p>
291 <h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
292 </li></ul></div></div></div><div id="method-onDrag" class="member ni"><a href="Ext.dd.DragDrop.html#method-onDrag" rel="method-onDrag" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onDrag" class="viewSource">view source</a></div><a name="onDrag"></a><a name="method-onDrag"></a><a href="Ext.dd.DragDrop.html#" rel="method-onDrag" class="cls expand">onDrag</a>(
293 <span class="pre">Event e</span>)
294  : void</div><div class="description"><div class="short"><p>Abstract method called during the onMouseMove event while dragging an
295 object.</p>
296 </div><div class="long"><p>Abstract method called during the onMouseMove event while dragging an
297 object.</p>
298 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mousemove event</p>
299 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
300 </li></ul></div></div></div><div id="method-onDragDrop" class="member ni"><a href="Ext.dd.DragDrop.html#method-onDragDrop" rel="method-onDragDrop" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onDragDrop" class="viewSource">view source</a></div><a name="onDragDrop"></a><a name="method-onDragDrop"></a><a href="Ext.dd.DragDrop.html#" rel="method-onDragDrop" class="cls expand">onDragDrop</a>(
301 <span class="pre">Event e, String|DragDrop[] id</span>)
302  : void</div><div class="description"><div class="short"><p>Abstract method called when this item is dropped on another DragDrop
303 obj</p>
304 </div><div class="long"><p>Abstract method called when this item is dropped on another DragDrop
305 obj</p>
306 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mouseup event</p>
307 </div></li><li><span class="pre">id</span> : String|DragDrop[]<div class="sub-desc"><p>In POINT mode, the element
308 id this was dropped on.  In INTERSECT mode, an array of dd items this
309 was dropped on.</p>
310 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
311 </li></ul></div></div></div><div id="method-onDragEnter" class="member ni"><a href="Ext.dd.DragDrop.html#method-onDragEnter" rel="method-onDragEnter" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onDragEnter" class="viewSource">view source</a></div><a name="onDragEnter"></a><a name="method-onDragEnter"></a><a href="Ext.dd.DragDrop.html#" rel="method-onDragEnter" class="cls expand">onDragEnter</a>(
312 <span class="pre">Event e, String|DragDrop[] id</span>)
313  : void</div><div class="description"><div class="short"><p>Abstract method called when this element fist begins hovering over
314 another DragDrop obj</p>
315 </div><div class="long"><p>Abstract method called when this element fist begins hovering over
316 another DragDrop obj</p>
317 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mousemove event</p>
318 </div></li><li><span class="pre">id</span> : String|DragDrop[]<div class="sub-desc"><p>In POINT mode, the element
319 id this is hovering over.  In INTERSECT mode, an array of one or more
320 dragdrop items being hovered over.</p>
321 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
322 </li></ul></div></div></div><div id="method-onDragOut" class="member ni"><a href="Ext.dd.DragDrop.html#method-onDragOut" rel="method-onDragOut" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onDragOut" class="viewSource">view source</a></div><a name="onDragOut"></a><a name="method-onDragOut"></a><a href="Ext.dd.DragDrop.html#" rel="method-onDragOut" class="cls expand">onDragOut</a>(
323 <span class="pre">Event e, String|DragDrop[] id</span>)
324  : void</div><div class="description"><div class="short"><p>Abstract method called when we are no longer hovering over an element</p>
325 </div><div class="long"><p>Abstract method called when we are no longer hovering over an element</p>
326 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mousemove event</p>
327 </div></li><li><span class="pre">id</span> : String|DragDrop[]<div class="sub-desc"><p>In POINT mode, the element
328 id this was hovering over.  In INTERSECT mode, an array of dd items
329 that the mouse is no longer over.</p>
330 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
331 </li></ul></div></div></div><div id="method-onDragOver" class="member ni"><a href="Ext.dd.DragDrop.html#method-onDragOver" rel="method-onDragOver" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onDragOver" class="viewSource">view source</a></div><a name="onDragOver"></a><a name="method-onDragOver"></a><a href="Ext.dd.DragDrop.html#" rel="method-onDragOver" class="cls expand">onDragOver</a>(
332 <span class="pre">Event e, String|DragDrop[] id</span>)
333  : void</div><div class="description"><div class="short"><p>Abstract method called when this element is hovering over another
334 DragDrop obj</p>
335 </div><div class="long"><p>Abstract method called when this element is hovering over another
336 DragDrop obj</p>
337 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mousemove event</p>
338 </div></li><li><span class="pre">id</span> : String|DragDrop[]<div class="sub-desc"><p>In POINT mode, the element
339 id this is hovering over.  In INTERSECT mode, an array of dd items
340 being hovered over.</p>
341 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
342 </li></ul></div></div></div><div id="method-onInvalidDrop" class="member ni"><a href="Ext.dd.DragDrop.html#method-onInvalidDrop" rel="method-onInvalidDrop" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onInvalidDrop" class="viewSource">view source</a></div><a name="onInvalidDrop"></a><a name="method-onInvalidDrop"></a><a href="Ext.dd.DragDrop.html#" rel="method-onInvalidDrop" class="cls expand">onInvalidDrop</a>(
343 <span class="pre">Event e</span>)
344  : void</div><div class="description"><div class="short"><p>Abstract method called when this item is dropped on an area with no
345 drop target</p>
346 </div><div class="long"><p>Abstract method called when this item is dropped on an area with no
347 drop target</p>
348 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mouseup event</p>
349 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
350 </li></ul></div></div></div><div id="method-onMouseDown" class="member ni"><a href="Ext.dd.DragDrop.html#method-onMouseDown" rel="method-onMouseDown" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onMouseDown" class="viewSource">view source</a></div><a name="onMouseDown"></a><a name="method-onMouseDown"></a><a href="Ext.dd.DragDrop.html#" rel="method-onMouseDown" class="cls expand">onMouseDown</a>(
351 <span class="pre">Event e</span>)
352  : void</div><div class="description"><div class="short"><p>Event handler that fires when a drag/drop obj gets a mousedown</p>
353 </div><div class="long"><p>Event handler that fires when a drag/drop obj gets a mousedown</p>
354 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mousedown event</p>
355 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
356 </li></ul></div></div></div><div id="method-onMouseUp" class="member ni"><a href="Ext.dd.DragDrop.html#method-onMouseUp" rel="method-onMouseUp" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-onMouseUp" class="viewSource">view source</a></div><a name="onMouseUp"></a><a name="method-onMouseUp"></a><a href="Ext.dd.DragDrop.html#" rel="method-onMouseUp" class="cls expand">onMouseUp</a>(
357 <span class="pre">Event e</span>)
358  : void</div><div class="description"><div class="short"><p>Event handler that fires when a drag/drop obj gets a mouseup</p>
359 </div><div class="long"><p>Event handler that fires when a drag/drop obj gets a mouseup</p>
360 <h3 class="pa">Parameters</h3><ul><li><span class="pre">e</span> : Event<div class="sub-desc"><p>the mouseup event</p>
361 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
362 </li></ul></div></div></div><div id="method-removeFromGroup" class="member ni"><a href="Ext.dd.DragDrop.html#method-removeFromGroup" rel="method-removeFromGroup" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-removeFromGroup" class="viewSource">view source</a></div><a name="removeFromGroup"></a><a name="method-removeFromGroup"></a><a href="Ext.dd.DragDrop.html#" rel="method-removeFromGroup" class="cls expand">removeFromGroup</a>(
363 <span class="pre">string sGroup</span>)
364  : void</div><div class="description"><div class="short"><p>Remove's this instance from the supplied interaction group</p>
365 </div><div class="long"><p>Remove's this instance from the supplied interaction group</p>
366 <h3 class="pa">Parameters</h3><ul><li><span class="pre">sGroup</span> : string<div class="sub-desc"><p>The group to drop</p>
367 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
368 </li></ul></div></div></div><div id="method-removeInvalidHandleClass" class="member ni"><a href="Ext.dd.DragDrop.html#method-removeInvalidHandleClass" rel="method-removeInvalidHandleClass" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-removeInvalidHandleClass" class="viewSource">view source</a></div><a name="removeInvalidHandleClass"></a><a name="method-removeInvalidHandleClass"></a><a href="Ext.dd.DragDrop.html#" rel="method-removeInvalidHandleClass" class="cls expand">removeInvalidHandleClass</a>(
369 <span class="pre">string cssClass</span>)
370  : void</div><div class="description"><div class="short"><p>Unsets an invalid css class</p>
371 </div><div class="long"><p>Unsets an invalid css class</p>
372 <h3 class="pa">Parameters</h3><ul><li><span class="pre">cssClass</span> : string<div class="sub-desc"><p>the class of the element(s) you wish to
373 re-enable</p>
374 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
375 </li></ul></div></div></div><div id="method-removeInvalidHandleId" class="member ni"><a href="Ext.dd.DragDrop.html#method-removeInvalidHandleId" rel="method-removeInvalidHandleId" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-removeInvalidHandleId" class="viewSource">view source</a></div><a name="removeInvalidHandleId"></a><a name="method-removeInvalidHandleId"></a><a href="Ext.dd.DragDrop.html#" rel="method-removeInvalidHandleId" class="cls expand">removeInvalidHandleId</a>(
376 <span class="pre">string id</span>)
377  : void</div><div class="description"><div class="short"><p>Unsets an invalid handle id</p>
378 </div><div class="long"><p>Unsets an invalid handle id</p>
379 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : string<div class="sub-desc"><p>the id of the element to re-enable</p>
380 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
381 </li></ul></div></div></div><div id="method-removeInvalidHandleType" class="member ni"><a href="Ext.dd.DragDrop.html#method-removeInvalidHandleType" rel="method-removeInvalidHandleType" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-removeInvalidHandleType" class="viewSource">view source</a></div><a name="removeInvalidHandleType"></a><a name="method-removeInvalidHandleType"></a><a href="Ext.dd.DragDrop.html#" rel="method-removeInvalidHandleType" class="cls expand">removeInvalidHandleType</a>(
382 <span class="pre">string tagName</span>)
383  : void</div><div class="description"><div class="short"><p>Unsets an excluded tag name set by addInvalidHandleType</p>
384 </div><div class="long"><p>Unsets an excluded tag name set by addInvalidHandleType</p>
385 <h3 class="pa">Parameters</h3><ul><li><span class="pre">tagName</span> : string<div class="sub-desc"><p>the type of element to unexclude</p>
386 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
387 </li></ul></div></div></div><div id="method-resetConstraints" class="member ni"><a href="Ext.dd.DragDrop.html#method-resetConstraints" rel="method-resetConstraints" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-resetConstraints" class="viewSource">view source</a></div><a name="resetConstraints"></a><a name="method-resetConstraints"></a><a href="Ext.dd.DragDrop.html#" rel="method-resetConstraints" class="cls expand">resetConstraints</a>(
388 <span class="pre">boolean maintainOffset</span>)
389  : void</div><div class="description"><div class="short"><p>resetConstraints must be called if you manually reposition a dd element.</p>
390 </div><div class="long"><p>resetConstraints must be called if you manually reposition a dd element.</p>
391 <h3 class="pa">Parameters</h3><ul><li><span class="pre">maintainOffset</span> : boolean<div class="sub-desc">
392 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
393 </li></ul></div></div></div><div id="method-setDragElId" class="member ni"><a href="Ext.dd.DragDrop.html#method-setDragElId" rel="method-setDragElId" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-setDragElId" class="viewSource">view source</a></div><a name="setDragElId"></a><a name="method-setDragElId"></a><a href="Ext.dd.DragDrop.html#" rel="method-setDragElId" class="cls expand">setDragElId</a>(
394 <span class="pre">Object id</span>)
395  : void</div><div class="description"><div class="short"><p>Allows you to specify that an element other than the linked element
396 will be moved with the cursor during a drag</p>
397 </div><div class="long"><p>Allows you to specify that an element other than the linked element
398 will be moved with the cursor during a drag</p>
399 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : Object<div class="sub-desc"><p>{string} the id of the element that will be used to initiate the drag</p>
400 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
401 </li></ul></div></div></div><div id="method-setHandleElId" class="member ni"><a href="Ext.dd.DragDrop.html#method-setHandleElId" rel="method-setHandleElId" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-setHandleElId" class="viewSource">view source</a></div><a name="setHandleElId"></a><a name="method-setHandleElId"></a><a href="Ext.dd.DragDrop.html#" rel="method-setHandleElId" class="cls expand">setHandleElId</a>(
402 <span class="pre">Object id</span>)
403  : void</div><div class="description"><div class="short">Allows you to specify a child of the linked element that should be
404 used to initiate the drag operation.  An example o...</div><div class="long"><p>Allows you to specify a child of the linked element that should be
405 used to initiate the drag operation.  An example of this would be if
406 you have a content div with text and links.  Clicking anywhere in the
407 content area would normally start the drag operation.  Use this method
408 to specify that an element inside of the content div is the element
409 that starts the drag operation.</p>
410 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : Object<div class="sub-desc"><p>{string} the id of the element that will be used to
411 initiate the drag.</p>
412 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
413 </li></ul></div></div></div><div id="method-setInitPosition" class="member ni"><a href="Ext.dd.DragDrop.html#method-setInitPosition" rel="method-setInitPosition" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-setInitPosition" class="viewSource">view source</a></div><a name="setInitPosition"></a><a name="method-setInitPosition"></a><a href="Ext.dd.DragDrop.html#" rel="method-setInitPosition" class="cls expand">setInitPosition</a>(
414 <span class="pre">int diffX, int diffY</span>)
415  : void</div><div class="description"><div class="short"><p>Stores the initial placement of the linked element.</p>
416 </div><div class="long"><p>Stores the initial placement of the linked element.</p>
417 <h3 class="pa">Parameters</h3><ul><li><span class="pre">diffX</span> : int<div class="sub-desc"><p>the X offset, default 0</p>
418 </div></li><li><span class="pre">diffY</span> : int<div class="sub-desc"><p>the Y offset, default 0</p>
419 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
420 </li></ul></div></div></div><div id="method-setOuterHandleElId" class="member ni"><a href="Ext.dd.DragDrop.html#method-setOuterHandleElId" rel="method-setOuterHandleElId" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-setOuterHandleElId" class="viewSource">view source</a></div><a name="setOuterHandleElId"></a><a name="method-setOuterHandleElId"></a><a href="Ext.dd.DragDrop.html#" rel="method-setOuterHandleElId" class="cls expand">setOuterHandleElId</a>(
421 <span class="pre">Object id</span>)
422  : void</div><div class="description"><div class="short"><p>Allows you to set an element outside of the linked element as a drag
423 handle</p>
424 </div><div class="long"><p>Allows you to set an element outside of the linked element as a drag
425 handle</p>
426 <h3 class="pa">Parameters</h3><ul><li><span class="pre">id</span> : Object<div class="sub-desc"><p>the id of the element that will be used to initiate the drag</p>
427 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
428 </li></ul></div></div></div><div id="method-setPadding" class="member ni"><a href="Ext.dd.DragDrop.html#method-setPadding" rel="method-setPadding" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-setPadding" class="viewSource">view source</a></div><a name="setPadding"></a><a name="method-setPadding"></a><a href="Ext.dd.DragDrop.html#" rel="method-setPadding" class="cls expand">setPadding</a>(
429 <span class="pre">int iTop, int iRight, int iBot, int iLeft</span>)
430  : void</div><div class="description"><div class="short">Configures the padding for the target zone in px.  Effectively expands
431 (or reduces) the virtual object size for targe...</div><div class="long"><p>Configures the padding for the target zone in px.  Effectively expands
432 (or reduces) the virtual object size for targeting calculations.
433 Supports css-style shorthand; if only one parameter is passed, all sides
434 will have that padding, and if only two are passed, the top and bottom
435 will have the first param, the left and right the second.</p>
436 <h3 class="pa">Parameters</h3><ul><li><span class="pre">iTop</span> : int<div class="sub-desc"><p>Top pad</p>
437 </div></li><li><span class="pre">iRight</span> : int<div class="sub-desc"><p>Right pad</p>
438 </div></li><li><span class="pre">iBot</span> : int<div class="sub-desc"><p>Bot pad</p>
439 </div></li><li><span class="pre">iLeft</span> : int<div class="sub-desc"><p>Left pad</p>
440 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
441 </li></ul></div></div></div><div id="method-setXConstraint" class="member ni"><a href="Ext.dd.DragDrop.html#method-setXConstraint" rel="method-setXConstraint" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-setXConstraint" class="viewSource">view source</a></div><a name="setXConstraint"></a><a name="method-setXConstraint"></a><a href="Ext.dd.DragDrop.html#" rel="method-setXConstraint" class="cls expand">setXConstraint</a>(
442 <span class="pre">int iLeft, int iRight, int iTickSize</span>)
443  : void</div><div class="description"><div class="short">By default, the element can be dragged any place on the screen.  Use
444 this method to limit the horizontal travel of th...</div><div class="long"><p>By default, the element can be dragged any place on the screen.  Use
445 this method to limit the horizontal travel of the element.  Pass in
446 0,0 for the parameters if you want to lock the drag to the y axis.</p>
447 <h3 class="pa">Parameters</h3><ul><li><span class="pre">iLeft</span> : int<div class="sub-desc"><p>the number of pixels the element can move to the left</p>
448 </div></li><li><span class="pre">iRight</span> : int<div class="sub-desc"><p>the number of pixels the element can move to the
449 right</p>
450 </div></li><li><span class="pre">iTickSize</span> : int<div class="sub-desc"><p>optional parameter for specifying that the
451 element
452 should move iTickSize pixels at a time.</p>
453 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
454 </li></ul></div></div></div><div id="method-setYConstraint" class="member ni"><a href="Ext.dd.DragDrop.html#method-setYConstraint" rel="method-setYConstraint" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-setYConstraint" class="viewSource">view source</a></div><a name="setYConstraint"></a><a name="method-setYConstraint"></a><a href="Ext.dd.DragDrop.html#" rel="method-setYConstraint" class="cls expand">setYConstraint</a>(
455 <span class="pre">int iUp, int iDown, int iTickSize</span>)
456  : void</div><div class="description"><div class="short">By default, the element can be dragged any place on the screen.  Set
457 this to limit the vertical travel of the element...</div><div class="long"><p>By default, the element can be dragged any place on the screen.  Set
458 this to limit the vertical travel of the element.  Pass in 0,0 for the
459 parameters if you want to lock the drag to the x axis.</p>
460 <h3 class="pa">Parameters</h3><ul><li><span class="pre">iUp</span> : int<div class="sub-desc"><p>the number of pixels the element can move up</p>
461 </div></li><li><span class="pre">iDown</span> : int<div class="sub-desc"><p>the number of pixels the element can move down</p>
462 </div></li><li><span class="pre">iTickSize</span> : int<div class="sub-desc"><p>optional parameter for specifying that the
463 element should move iTickSize pixels at a time.</p>
464 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
465 </li></ul></div></div></div><div id="method-startDrag" class="member ni"><a href="Ext.dd.DragDrop.html#method-startDrag" rel="method-startDrag" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-startDrag" class="viewSource">view source</a></div><a name="startDrag"></a><a name="method-startDrag"></a><a href="Ext.dd.DragDrop.html#" rel="method-startDrag" class="cls expand">startDrag</a>(
466 <span class="pre">int X, int Y</span>)
467  : void</div><div class="description"><div class="short"><p>Abstract method called after a drag/drop object is clicked
468 and the drag or mousedown time thresholds have beeen met.</p>
469 </div><div class="long"><p>Abstract method called after a drag/drop object is clicked
470 and the drag or mousedown time thresholds have beeen met.</p>
471 <h3 class="pa">Parameters</h3><ul><li><span class="pre">X</span> : int<div class="sub-desc"><p>click location</p>
472 </div></li><li><span class="pre">Y</span> : int<div class="sub-desc"><p>click location</p>
473 </div></li></ul><h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
474 </li></ul></div></div></div><div id="method-toString" class="member ni"><a href="Ext.dd.DragDrop.html#method-toString" rel="method-toString" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-toString" class="viewSource">view source</a></div><a name="toString"></a><a name="method-toString"></a><a href="Ext.dd.DragDrop.html#" rel="method-toString" class="cls expand">toString</a> : string</div><div class="description"><div class="short"><p>toString method</p>
475 </div><div class="long"><p>toString method</p>
476 <h3 class="pa">Returns</h3><ul><li><span class="pre">string</span>&nbsp; &nbsp;<p>string representation of the dd obj</p>
477 </li></ul></div></div></div><div id="method-unlock" class="member ni"><a href="Ext.dd.DragDrop.html#method-unlock" rel="method-unlock" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-unlock" class="viewSource">view source</a></div><a name="unlock"></a><a name="method-unlock"></a><a href="Ext.dd.DragDrop.html#" rel="method-unlock" class="cls expand">unlock</a> : void</div><div class="description"><div class="short"><p>Unlock this instace</p>
478 </div><div class="long"><p>Unlock this instace</p>
479 <h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
480 </li></ul></div></div></div><div id="method-unreg" class="member ni"><a href="Ext.dd.DragDrop.html#method-unreg" rel="method-unreg" class="expand more ar"><span>&nbsp;</span></a><div class="title"><div class="meta"><a href="Ext.dd.DragDrop.html" class="definedIn docClass">Ext.dd.DragDrop</a><br/><a href="../source/DragDrop.html#Ext-dd.DragDrop-method-unreg" class="viewSource">view source</a></div><a name="unreg"></a><a name="method-unreg"></a><a href="Ext.dd.DragDrop.html#" rel="method-unreg" class="cls expand">unreg</a> : void</div><div class="description"><div class="short"><p>Remove all drag and drop hooks for this element</p>
481 </div><div class="long"><p>Remove all drag and drop hooks for this element</p>
482 <h3 class="pa">Returns</h3><ul><li><span class="pre">void</span>&nbsp; &nbsp;
483 </li></ul></div></div></div></div></div></div></div><div id="pageContent"></div></div></div></div></body></html>