Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / guides / drag_and_drop / README.md
1 # Drag and Drop
2 ______________________________________________
3
4 One of the most powerful interaction design patterns available to developers is "Drag and Drop." We utilize Drag and Drop without really giving it much thought - especially when its done right. Here are 5 easy steps to ensure an elegant implementation.
5
6 ## Defining drag and drop
7
8 A drag operation, essentially, is a click gesture on some UI element while the mouse button is held down and the mouse is moved. A drop operation occurs when the mouse button is released after a drag operation. From a high level, drag and drop decisions can be summed up by the following flow chart.
9
10 {@img dnd_drag_logic.jpg Ext Drag and Drop}
11
12 To speed up our development, Ext JS provides us with the Ext.dd classes to manage the basic decisions for us. In this guide, we will cover coding for the appearance and removal of the drop invitation, invalid drop repair and what happens when a successful drop occurs.
13
14 ## Organizing the drag and drop classes
15
16 A first glance of the classes in the Ext.dd documentation might seem a bit intimidating.  But, if we take a quick moment to look at the classes, we see that they all stem from the DragDrop class and most can be categorized into Drag or Drop groups.  With a bit more time and digging, we can see that the classes can be further categorized into single node and multiple node drag or drop interactions.
17
18 {@img diagram.jpg Ext Drag and Drop}
19
20 In order to learn about the basics of drag and drop we'll focus on applying single drag and drop interactions to DOM nodes.  To do this, we'll utilize the DD and DDTarget classes, which provide the base implementations for their respective drag and drop behaviors. However, we need to discuss what our objectives are before we can start implementing drag and drop.
21
22 ## The task at hand
23
24 Lets say we've been asked to develop an application that will provide a rental car company the ability to place their cars and trucks in one of three states:  available, rented or in repair status.  The cars and trucks are only allowed to be placed in their respective "available" container.
25
26 {@img dnd_story.jpg Ext Drag and Drop}
27
28 To get started, we must make the cars and trucks "dragable". For this, we'll use DD. We'll need to make the rented, repair and vehicle containers "drop targets".  For this we'll use DDTarget.  Lastly, we'll use different drag drop groups to help enforce the requirement that cars and trucks can only be dropped into their respective "available" containers. The HTML and CSS for this example is already constructed and can be downloaded here.  With that downloaded, we can begin coding by adding drag operations to the cars and trucks.
29
30 ## Step 1: Starting with drag
31
32 To configure the vehicle DIVs elements as dragable, we'll need to obtain a list and loop through it to instantiate new instances of DD.  Here's how we do it.
33
34     // Create an object that we'll use to implement and override drag behaviors a little later
35     var overrides = {};
36     // Configure the cars to be draggable
37     var carElements = Ext.get('cars').select('div');
38     Ext.each(carElements.elements, function(el) {
39         var dd = new Ext.dd.DD(el, 'carsDDGroup', {
40             isTarget  : false
41         });
42         //Apply the overrides object to the newly created instance of DD
43         Ext.apply(dd, overrides);
44     });
45
46     var truckElements = Ext.get('trucks').select('div');
47     Ext.each(truckElements.elements, function(el) {
48         var dd = new Ext.dd.DD(el, 'trucksDDGroup', {
49             isTarget  : false
50         });
51         Ext.apply(dd, overrides);
52     });
53
54 All drag and drop classes are designed to be implemented by means of overriding its methods. That's why in the above code segment, we have create an empty object called overrides, which will be filled in later with overrides specific to the action we need. We get of list of car and truck elements by leveraging the DomQuery select method to query the cars container for all the child div elements. To make the cars and truck elements dragable, we create a new instance of DD, passing in the car or truck element to be dragged and the drag drop group that it is to participate in. Notice that the vehicle types have their own respective drag drop group. This will be important to remember later when we setup the rented and repair containers as drop targets. Also notice that we're applying the overrides object to the newly created instances of DD using Ext.apply., which is a handy way to add properties or methods to an existing object. Before we can continue with our implementation, we need to take a quick moment to analyze what happens when you drag an element on screen. With this understanding, the rest of the implementation will fall into place.
55
56 ## Peeking at how drag nodes are affected
57
58 The first thing you'll notice when dragging the car or truck elements around is that they will stick wherever they are dropped. This is OK for now because we've just begun our implementation. What is important is to understand how the drag nodes are being affected. This will aid us in coding for the return to their original positions when they are dropped on anything that is a valid drop target, which is known as an "invalid drop". The below illustration uses FireBug's HTML inspection panel and highlights the changes being made by when a drag operation is applied to the Camaro element.
59
60 {@img dnd_inspection.jpg Ext Drag and Drop}
61
62 Click the above image to test the drag operation. While inspecting the drag element during a drag operation, we can see a style attribute added to the element with three CSS values populated: position, top and left. Further inspection reveals that the position attribute set to relative and top and left attributes updating while the node is being dragged around. After a the drag gesture completes, the style attribute remains along with the styles contained therein. This is what we have to clean up when we code for the repair of an invalid drop. Until we setup proper drop targets, all drop operations are considered invalid.
63
64 ## Step 2: Repairing an invalid drop
65
66 The path of least resistance is to repair an invalid drop by reseting the style attribute that is applied during the drag operation. This means that the drag element would disappear from under the mouse and reappear where it originated and would be quite boring. To make it smoother, we'll use Ext.Fx to animate this action. Remember that the drag and drop classes were designed to have methods overridden. To implement repair, we'll need to override the b4StartDrag, onInvalidDrop and endDrag methods. Lets add the following methods to our overrides object above and we'll discuss what they are and do.
67
68     // Called the instance the element is dragged.
69     b4StartDrag : function() {
70         // Cache the drag element
71         if (!this.el) {
72             this.el = Ext.get(this.getEl());
73         }
74
75         //Cache the original XY Coordinates of the element, we'll use this later.
76         this.originalXY = this.el.getXY();
77     },
78     // Called when element is dropped not anything other than a dropzone with the same ddgroup
79     onInvalidDrop : function() {
80         // Set a flag to invoke the animated repair
81         this.invalidDrop = true;
82     },
83     // Called when the drag operation completes
84     endDrag : function() {
85         // Invoke the animation if the invalidDrop flag is set to true
86         if (this.invalidDrop === true) {
87             // Remove the drop invitation
88             this.el.removeClass('dropOK');
89
90             // Create the animation configuration object
91             var animCfgObj = {
92                 easing   : 'elasticOut',
93                 duration : 1,
94                 scope    : this,
95                 callback : function() {
96                     // Remove the position attribute
97                     this.el.dom.style.position = '';
98                 }
99             };
100
101             // Apply the repair animation
102             this.el.moveTo(this.originalXY[0], this.originalXY[1], animCfgObj);
103             delete this.invalidDrop;
104         }
105     },
106
107 In the above code, we begin by overriding the b4StartDrag method, which is called the instant the drag element starts being dragged around screen and makes it an ideal place to cache the drag element and original XY coordinates - which we will use later on in this process. Next, we override onInvalidDrop, which is is called when a drag node is dropped on anything other than a drop target that is participating in the same drag drop group. This override simply sets a local invalidDrop property to true, which will be used in the next method. The last method we override is endDrag, which is called when the drag element is no longer being dragged around screen and the drag element is no longer being controlled by the mouse movements. This override will move the drag element back to its original X and Y position using animation. We configured the animation to use the elasticOut easing to provide a cool and fun bouncy effect at end of the animation.
108
109 {@img dnd_camaro_repair.jpg Ext Drag and Drop}
110
111 Click the above image to view the animated repair operation in action. OK, now we have the repair operation complete. In order for it to work on the drop invitation and valid drop operations, we need to setup the drop targets.
112
113 ## Step 3: Configuring the drop targets
114
115 Our requirements dictate that we will allow cars and trucks to be in be dropped in the rented and repair containers as well as their respective original containers. To do this, we'll need to instantiate instances of the DDTarget class. Here's how its done.
116
117     //Instantiate instances of Ext.dd.DDTarget for the cars and trucks container
118     var carsDDTarget    = new Ext.dd.DDTarget('cars','carsDDGroup');
119     var trucksDDTarget = new Ext.dd.DDTarget('trucks', 'trucksDDGroup');
120
121     //Instantiate instnaces of DDTarget for the rented and repair drop target elements
122     var rentedDDTarget = new Ext.dd.DDTarget('rented', 'carsDDGroup');
123     var repairDDTarget = new Ext.dd.DDTarget('repair', 'carsDDGroup');
124
125     //Ensure that the rented and repair DDTargets will participate in the trucksDDGroup
126     rentedDDTarget.addToGroup('trucksDDGroup');
127     repairDDTarget.addToGroup('trucksDDGroup');
128
129 In the above code snippet, we have setup drop targets for the cars, trucks, rented and repair elements. Notice that the cars container element only participates in the "carsDDGroup" and the trucks container element participates in the "trucksDDGroup". This helps enforce the requirement that cars and trucks can only be dropped in their originating container. Next, we instantiate instances DDTarget for the rented and repair elements. Initially, they are configured to only participate in the "carsDDGroup". In order to allow them to participate in the "trucksDDGroup", we have to add it by means of addToGroup. OK, now we've configured our drop targets. Lets see what happens when we drop the cars or trucks on a valid drop element.
130
131 {@img dnd_drops_no_onDragDrop.jpg Ext Drag and Drop}
132
133 Click the above image see the progress thus far. In exercising the drop targets, we see that the drag element stays exactly its dropped. That is, images can be dropped anywhere on a drop target and stay there. This means that our drop implementation is not complete. To complete it, we need to actually code for the "complete drop" operation, by means of another override for the instances of DD that we created some time ago.
134
135 ## Step 4: Completing the drop
136
137 To complete the drop, we will need to actually drag the element from its parent element to the drop target element using DOM tools. This is accomplished by overriding the DD onDragDrop method. Add the following method to the overrides object.
138
139     // Called upon successful drop of an element on a DDTarget with the same
140     onDragDrop : function(evtObj, targetElId) {
141         // Wrap the drop target element with Ext.Element
142         var dropEl = Ext.get(targetElId);
143
144         // Perform the node move only if the drag element's
145         // parent is not the same as the drop target
146         if (this.el.dom.parentNode.id != targetElId) {
147
148             // Move the element
149             dropEl.appendChild(this.el);
150
151             // Remove the drag invitation
152             this.onDragOut(evtObj, targetElId);
153
154             // Clear the styles
155             this.el.dom.style.position ='';
156             this.el.dom.style.top = '';
157             this.el.dom.style.left = '';
158         }
159         else {
160             // This was an invalid drop, initiate a repair
161             this.onInvalidDrop();
162         }
163
164 In the above override, the drag element is moved to the drop target element, but only if it is not the same as the drag element's parent node. After the drag element is moved, the styles are cleared from it. If the drop element is the same as the drag element's parent, we ensure a repair operation occurs by calling this.onInvalidDrop.
165
166 {@img drag_and_drop_working_without_invitation.jpg Ext Drag and Drop}
167
168 Click the above image to see the complete drop operation in action. Upon a successful drop, the drag elements will now will be moved from their parent element to the drop target. How does the user know if they are hovering above a valid drop target? We'll give the user some visual feedback by configuring the drop invitation.
169
170 ## Step 5: Adding drop invitation
171
172 In order to make drag and drop a bit more useful, we need to provide feedback to the user on whether or not a drop operation can successfully occur. This means that we'll have to override the onDragEnter and onDragOut methods Add these last two methods to the overrides object.
173
174     // Only called when the drag element is dragged over the a drop target with the same ddgroup
175     onDragEnter : function(evtObj, targetElId) {
176         // Colorize the drag target if the drag node's parent is not the same as the drop target
177         if (targetElId != this.el.dom.parentNode.id) {
178             this.el.addClass('dropOK');
179         }
180         else {
181             // Remove the invitation
182             this.onDragOut();
183         }
184     },
185     // Only called when element is dragged out of a dropzone with the same ddgroup
186     onDragOut : function(evtObj, targetElId) {
187         this.el.removeClass('dropOK');
188     }
189
190 In the above code, we override the onDragEnter and onDragOut methods, both of which are only utilized when the drag element is interacting with a drop target participating in the same drag drop group. The onDragEnter method is only called when the mouse cursor first intersects the boundaries of a drop target while a drag item is in drag mode. Likewise, onDragOut is called when the mouse cursor is first dragged outside the boundaries of the drop target while in drag mode.
191
192 {@img drag_and_drop_working_with_invitation.jpg Ext Drag and Drop}
193
194 Click the above image to see the drop invitation. By adding overrides to the onDragEnter and onDragOut methods we can see that the background of the drag element will turn green when the mouse cursor first intersects a valid drop target and will lose its green background when it leaves the drop target or is dropped. This completes our implementation of drag and drop with DOM elements.
195
196 ## It doesn't stop here
197
198 Drag and drop can be a can be applied to mostly everything in the Ext JS framework. Here are a few examples that you can use to learn how to implement drag and drop with various widgets:
199
200  - GridPanel to GridPanel
201  - Grid to FormPanel
202  - Ext.form.Field to GridPanel cell
203  - Use of DragZone and DropZone
204  - DataView to TreePanel
205
206 ## Summary
207
208 Today, we learned how to implement end to end drag and drop of DOM nodes using the first-level drag and drop implementation classes. From a high-level, we defined and discussed what drag and drop is and how to think about it in terms of the framework. We also learned that the drag and drop classes can be grouped by drag or drop behaviors and whether or not they support single or multiple drag or drop operations. While implementing this behavior, we illustrated that the dd classes help make some of the behavioral decisions, and that we are responsible for coding the end-behaviors. We hope you've enjoyed this thorough look at some fundamental drag and drop operations with DOM nodes. We look forward to bringing you more articles about this topic in the future.
209
210 <div class="author">
211 Written by Jay Garcia
212 Author of Ext JS in Action and Sencha Touch in Action, Jay Garcia has been an evangelist of Sencha-based JavaScript frameworks since 2006. Jay is also Co-Founder and CTO of Modus Create, a digital agency focused on leveraging top talent to develop high quality Sencha-based applications. Modus Create is a Sencha Premier partner.
213 </div>