In computer graphical user interfaces, drag-and-drop is the action of (or support for the action of) selecting a virtual object by "grabbing" it and dragging it to a different location or onto another virtual object.

learn more… | top users | synonyms (3)

54
votes
6answers
20k views

How do I drag and drop files into a c# application?

I've seen this done in Borland's Turbo C++ environment, but I'm not sure how to go about it for a C# app I'm working on. Are there best practices or gotchas to look out for?
33
votes
8answers
21k views

jQuery Drag And Drop Using Live Events

I have an application with a long list that changes frequently, and I need the items of that list to be draggable. I've been using the jQuery UI draggable plugin, but it is slow to add to 400+ list ...
51
votes
4answers
32k views

Basic Drag and Drop in iOS

I want to have a view in which there are vehicles driving around that the user can also drag and drop. What do you think is the best large-scale strategy for doing this? Is it best to get touch events ...
34
votes
1answer
15k views

Tutorial on How to drag and drop item from UITableView to UITableView [closed]

I've been banging my head on this one for a while and I figured it out. I want to give back to the community since I've gotten a lot of help from this website :). I'm trying to copy an item from one ...
25
votes
9answers
15k views

Preventing click event with jQuery drag and drop

I have an elements on page that are draggabe with jQuery. These elements have click event wich navigates to another page (ordinary links for example). What is the best way to prevent click from ...
1
vote
3answers
6k views

How to implement Drag and Drop in android 2.2?

I am trying to develop an android app. , where user should be abled to drag images from one cell of a grid to another. To implement this I need Drag and Drop API which is introduced in Android 4.0, ...
110
votes
10answers
83k views

Is there a good jQuery Drag-and-drop file upload plugin? [closed]

Is there a nice tidy jQuery plugin that allows including a single JS script then using a simple snippet to enable a form? Something like this: $j('#MyForm').enableDragDropUploads('.upload-area') ...
19
votes
3answers
3k views

Drag and drop to Desktop / Explorer

Following my scenario. I got an Application which loads a Filestructure (Folders, Files) from a Database into a WPF ListView. Now I'd like to grab a file from this ListView, drag it over my Desktop ...
4
votes
4answers
4k views

Android Drag and drop images on the Screen?

I m working on project user to move the image in one position to Another position on the screen. I have written a sample code to move the image but the problem here is if I move one image the ...
31
votes
6answers
23k views

jQuery Draggable and overflow issue

I am having an undesired effect when I drag a div from a container div which is set as overflow: scroll. I have found an example of someone else where they have had the issue but I have been unable ...
18
votes
5answers
10k views

C# Drag drop does not work on windows 7

I have had a project for quite a while using C# winforms. I implemented a drag-drop function before windows 7 was released. Worked like a charm. However, when using windows 7 it does not work. The ...
20
votes
5answers
20k views

Android - drag and drop - list rearrange

How can I create a list where I can rearrange list items with dragging list rows to another row and so on (to change to order)? Just like on the HTC Hero in the clocks app where you can rearrange the ...
14
votes
4answers
14k views

How can I use Drag-and-Drop in Swing to get file path?

I have a JTextField in my swing application that holds the file path of a file selected to be used. Currently I have a JFileChooser that is used to populate this value. However, I would like to add ...
10
votes
3answers
3k views

Getting the position of the element in a list when it's drag/dropped (ui.sortable)

I have a sortable list like this one: http://jqueryui.com/demos/sortable Is it possible to get the start and end position of the element in the list, when it has been moved? I'm talking about their ...
16
votes
6answers
12k views

How to determine presence of HTML5 drag'n'drop file upload API (like the one from FF3.6)

I am writing an application that's supposed to support HTML5 drag/drop API for file, much like the on described here. I would like to perform a programmatic check on whether the browser support this ...
12
votes
2answers
15k views

iPhone drag/drop

Trying to get some basic drag/drop functionality happening for an iPhone application. My current code for trying to do this is as follows: - (void) touchesMoved:(NSSet*)touches ...
16
votes
2answers
15k views

jquery ui draggable elements not 'draggable' outside of scrolling div

i am super stumped. i have many elements (floating href tags) in a div with a set height/width, with scroll set to "overflow: auto" in the css. this is the structure of the divs: <div ...
6
votes
2answers
11k views

zooming and dragging images using matrix in android

i got the following code (from Hello android by Ed Burnette) working nicely and i am able to drag and zoom for an image. import android.app.Activity; import android.graphics.Matrix; import ...
14
votes
5answers
6k views

HTML5 drag and drop between windows

is there anyway with the HTML5 Drag & Drop functionality or/and the File API to drag an jpg image from one window to another? The idea is that I could drag and image from Facebook to a different ...
7
votes
4answers
2k views

How can I allow a form to accept file dropping without handling Windows messages?

In new Delphi XE can i allow form to accept file dropping (without handling windows messages) ?
7
votes
6answers
13k views

How do I drag multiple elements with JavaScript or jQuery?

I want to be able to do multiple dragging of elements with jQuery, like selecting and dragging desktop icons in Windows. I found the demo of threedubmedia's jQuery.event.drag: ...
2
votes
1answer
994 views

Drop image into contenteditable in Chrome to the cursor

In Firefox, if I drag an image into a contenteditable field from the desktop, it will be embedded as base64 TO the HIGHLIGHTED cursor position. JSFiddle: http://jsfiddle.net/zupa/YrwsS/ Now in ...
6
votes
3answers
2k views

Dealing with overlapping jQuery sortable lists

This is a bit of an obscure issue, but I'm using jQuery Sortables and trying to get two connected lists working together nicely when one is positioned as fixed. It all works fine until you scroll the ...
5
votes
5answers
5k views

iPhone/iOS: How to implement Drag and Drop for subviews of a Scrollview?

I am having an horizontal scrollview in an UIViewController, where i have many images in small sizes. I am keeping the images in scrollview because the images are more, so user can scroll horizontally ...
1
vote
1answer
188 views

How can I set the priority mouse listener

I have a panel with lists and buttons. The lists set MouseAdapter with mouseClick(). I added to the panel MouseAdapter with mousePressed() and mouseReleased() and MouseMotionAdapter with mouseDragged. ...
24
votes
6answers
33k views

jQuery draggable table elements

jQuery's draggable functionality doesn't seem to work on tables (in FF3 or Safari). It's kind of difficult to envision how this would work, so it's not really surprising that it doesn't. <html> ...
15
votes
4answers
5k views

Drag and Drop between Instances of the same Windows Forms Application

I have created a small Windows Forms test application to try out some drag/drop code. The form consists of three PictureBoxes. My intention was to grab a picture from one PictureBox, display it as a ...
13
votes
7answers
44k views

How do I get the coordinate position after using jQuery drag and drop?

How do I get the coordinate position after using jQuery drag and drop? I want to save the coordinate to a database, so that next time I visit, the item will be in that position. For example, x: ...
11
votes
3answers
5k views

PlayFramework: Ajax + Drag n' Drop + File Upload + File object in controller?

Does anyone know of a way to upload a file via Ajax and using drag n' drop from the desktop that supports PlayFramework's ability to convert file uploads to a File object? I've tried several ...
8
votes
1answer
6k views

Draggable revert if outside this div and inside of other draggables (using both invalid and valid revert options)

On ui draggables ( http://jqueryui.com/demos/droppable/#revert ) is it possible to revert a div if its inside one div and if not inside another one? for example like this $( "#draggable" ...
4
votes
4answers
4k views

How does one implement drag and drop for Android marker?

Hi? I am working on a MapView app in Android. I have three markers that I want to be able to use the Google Map API getlocation-function on, later on. In order to try it out I would like to move the ...
11
votes
8answers
17k views

Internet Explorer 9 Drag and Drop (DnD)

Does anyone know why the following web site drag and drop examples (plus many other tutorials online) don't work in Internet Explorer 9? Chrome, FireFox and Safari are all OK. ...
5
votes
2answers
3k views

Cross-application drag-and-drop in Delphi

I would like to create a Delphi application for Windows XP which allows dropping of files dragged from Windows Explorer (the Desktop or folder windows) or other applications which support this ...
4
votes
4answers
14k views

Javascript ondrag, ondragstart, ondragend

I've been trying to use ondrag() and some other functions on a div rendered dynamically on an HTML page. None of these events seem to fire, nor do I get any errors. I can't find much helpful ...
6
votes
4answers
6k views

Android GridView reorder elements via Drag and Drop

I have a GridView in an application I am working on. I would like to be able to reorder the items in the GridView via drag-and-drop. I have found lots of help for ListViews but nothing on GridViews. I ...
6
votes
1answer
2k views

How move/reorder cells from TableView1 to TableView2

I have several UITableViews, with different datasources in a iPad screen. I need to copy/move a cell from the first tableView to the second, similar how is done with ListBox in other languages. Now, ...
7
votes
1answer
2k views

Drag and drop differences between JDK1.6 and JDK1.7

Does anybody know about differences in the drag-and-drop behavior between JDK1.6 and JDK1.7 ? I encountered a difference (illustrated below) when drag-and-dropping an URL from a browser onto an ...
7
votes
3answers
695 views

Drag Drop from .NET application to Explorer

I'm looking to provide users with ability to drag&drop files from grids and other controls in my application into Explorer. Any good samples/articles for that?
2
votes
1answer
5k views

how to manage drag and drop for MKAnnotationView on IOS?

I'm working without InterfaceBuilder. I've an instance of MKAnnotationView with setDraggable on YES, In My MKMapView my annotation view is displayed and I can drag and drop it. How can I execute an ...
6
votes
1answer
3k views

How to use filegroupdescriptor to drag file to explorer c#

I would like to drag and drop an element of a listbox to explorer. When the drag and drop is started, I need to prepare the file on demand and save it to a memory stream. Can you provide me with an ...
4
votes
2answers
2k views

Changing Mouse Cursor for HTML5 Drag Drop Files (GMail Drag Drop)

I'm trying to reproduce the way GMail handles html5 drag/drop attachments -- where as soon as you drag files over the page, it displays a new element for you to drop them on. I got that part worked ...
1
vote
2answers
2k views

Delphi - Drag & Drop with ListView

Good evening :-)! I have this code to use Drag & Drop method for files: TForm1 = class(TForm) ... public procedure DropFiles(var msg: TMessage ); message WM_DROPFILES; end; procedure ...
21
votes
3answers
33k views

When I make a draggable clone and drop it in a droppable I cannot drag it again

When I make a draggable clone and drop it in a droppable I cannot drag it again. How do I do that? Secondly I can only figure out how to us .append to add the clone to the droppable. But then it snaps ...
7
votes
2answers
4k views

ipad: Drag a UITableViewCell from one UITableViewController and drop it into another

my question is, wether or not this is possible, and if so, how would you approach this task? Does anybody know of an app already using this functionality, or where to get some sample code? Also, if ...
13
votes
3answers
19k views

Drag and Drop in MobileSafari?

Is it possible to allow users to drag and drop items in mobile safari? Google images on the iPhone does something similar, but I'm not sure if it is true drag and drop or some other work around. ...
16
votes
6answers
45k views

JQuery drag and drop - how to get at element being dragged

I am using the JQuery libs to implement drag and drop. How do I get at the element that is being dragged when it is dropped? I want to get the id of the image inside the div. The following element ...
2
votes
6answers
6k views

Drag, drop and shape rotation with Raphael JS

I'm using RaphaelJS 2.0 to create several shapes in a div. Each shape needs to be able to be dragged and dropped within the bounds of the div, independently. Upon double clicking a shape, that shape ...
6
votes
1answer
7k views

Drag and drop example?

I have a simple question,I searched the internet already but i can't really find an example. I just need something simple: I have 2 listviews and i want to have drag and drop. But it has to be in WPF ...
21
votes
6answers
3k views

HTML5 dragleave fired when hovering a child element

The problem I'm having is that the dragleave event of an element is fired when hovering a child element of that element. Also, dragenter is not fired when hovering back the parent element again. I ...
8
votes
1answer
6k views

HTML5 Drag and Drop anywhere on the screen

I have a debugger log that I've written in JavaScript for a project I'm working on. The log is basically an <aside> tag in HTML5 that only shows when needed. I wanted to play around with the ...

1 2 3 4 5 11