Drag and Drop

 Nov 09, 2015

When a user interacts with our applications, being either a website or an Office Application; we need to add functionality that can improve the user’s experience. This can be a variety of things, such as data validation and interaction with objects on the site.

Adding functionality such as drag and drop can simplify the interaction between your application and the user, an example of this could be a user that wants to add a product to a shopping cart by just dragging the image into the shopping cart.

Drag and drop interaction in applications has originated in Office applications, but can also be included in our websites. To do this you can utilise the Drag and Drop API within JavaScript, also I am using bootstrap for my User Interface.

Here is a simple list of steps so you can implement this API yourself:

Create a page that you want to use the functionality on. In this demo I have created an HTML page with four items on it; these items will be used for dragging and will be dropped onto a container to capture the items information.

drag and drop

Here is the markup code of the HTML body:

drop down

The needed parts for the body are:

  • Must contain an element that you want to drag, in my case an Article with a class of “Darticle” (in Green).
  • These elements must contain information you want to capture in the drop zone, in my case I am capturing the “id” and “data-description” attributes (in Purple).
  • The rest of the nested elements are just used for display purposes.
  • Must contain a “drop Zone” where the information needs to be copied to.

The next step is to create a JavaScript file to contain the logic for the drag and drop functionality. The following images illustrate the code within the file.

Img 3

In this file. we create a function to add the Drag and drop actions all at once, called “InsertDndAction”. Within this function we add three variables:

  1. A collection of our draggable items called “Dragimages”.
  2. An object to represent our DropZone, called “Dropzone”.
  3. An object to represent the “ul” element in the dropzone that will be used to drop items into. This is called “TheDropzone”.

Img 4

Next, we add functionality so that all the images within the “Dragimages” collection can listen for when it is being dragged. Within this loop we add an event listener to each item that looks for the “dragstart” event. When that event fires we execute a function that copies the data and sets the “Text” value equal to the Item’s ID.

img 5

The following piece of code adds two events to the Dropzone, one called “dragover” and another called “drop”. The dragover event will trigger once the users drag an object into the dropzone and the drop event will trigger once the user lets go.

In the dragover event we just want to allow the user to copy data.

In the drop event we get the value of the “Text” key set earlier in the “dragstart” event, and get the corresponding element on the page with the same ID. We then call the following method to add a new item to the “ul” in the “Dropzone”.

Img 6

In this method we set a variable equal to the “id” and “data-description” attributes of the dragged item. We then create an object to be added to the list inside the dropzone.

Finally we need to add the reference to our script in the head of our page, as well as a script tag to fire off the JavaScript function on load.

Img 7

The final product will look like the following:

Img 8

How do your Excel skills stack up?   

Test Now  

How do
your Excel skills
stack up?

Grade your skills now

About the Author:

Auret Swanepoel  

As a recent addition to the New Horizons team, Auret is a highly skilled and qualified IT Technical trainer. He has been a Microsoft Certified Trainer (MCT) since 2008 and has since then, also become a Microsoft Certified Professional (MCP), a Microsoft Certified Technology Specialist (MCTS) and a Microsoft Certified Information Technology Professional (MCITP). With his international experience as a trainer in South Africa, Auret is able to adapt his teaching style to different audiences in the classroom and ensure that students are learning in a positive and collaborative environment.

Read full bio
top
Back to top