Drag and drop is a gesture of "grabbing" object by pressing and holding down left mouse button, moving it to different location and dropping it by releasing the button.

learn more… | top users | synonyms

0
votes
0answers
7 views

gwt drag and drop group

I have been using GWT native Dnd successfully. Now I have a need to create Dnd group. This means if Widget A and panel B are in the same group, I want to allow user to drag A into B. C and D forms ...
0
votes
0answers
19 views

Dragging a local file into textarea with Opera 12

I am creating an application using HTML5 where I would like to be able to drag a local text file into a textarea. This works fine in Firefox 20.0.1, Chrome 26.0.1410.64 m and Internet Explorer 10 but ...
0
votes
1answer
14 views

dojo dnd source and xhrPost

I havent tried this yet but I know that Im going to spend alot of time and frustrations getting this to work along the way. I just learned how to use the dojo dnd source recently and I want to know ...
0
votes
0answers
37 views

Gtk+ image Drag and Drop doesn't work

Hi I'm currently working on a prom photo booth. In the program students are able to drag pictures into the template and save it. I am new to Gtk+ programming, and I spend a lot of time researching and ...
0
votes
0answers
26 views

gwt drag and drop with custom proxy

I have two panels, first one with dragController (with draggable items), second with dropController. I want to override proxy with another widget. so that when the drag starts the new widget (not ...
0
votes
0answers
21 views

Drag all Divs. “this”

I have this code for DnD an element. It works for an especific element. However I wanna make it work for all divs. I can't reference "this.id" to the move function. I don't what is missing to make it ...
0
votes
0answers
26 views

DOJO: Alternative for checkItemAcceptance in dgrid

i've created an DnD Tree in Dojo on dijit base. There i've got a function in the DnD controller called checkItemAcceptance. It works fine so i thougt i could use the code for a dgrid dnd tree. But ...
0
votes
0answers
34 views

Gwt Drag and Drop, How to move an dnd enabled label inside a verticalpanel?

I got a label "OutSide Label" & a vertical panel has label "l1", "l2","l3". The label "OutSide Label" can be able to dragged, while label "l1" & "l2" &"l3" are normal undragable label. I ...
0
votes
1answer
39 views

In Gwt Drag and Drop, how to drop a widget into a right position of a VerticalPanel that already has many labels on it?

Ok, let say, you got a label, you got a VerticalPanel that has many labels on it. See this code: // Make the widget draggable. Label w = new Label("OutSide Label"); ...
0
votes
0answers
12 views

How to change the default drag icon in netbeans platform?

Is it possible to change the default drag icon (rectangle with +) to the image of the node which is being dragged from an OutlineView? I have seen Geertjan's blog dating back 2006 called cursing ...
1
vote
1answer
47 views

in Gwt, there are 2 different packages (or 2 options) for doing drag n Drop? Which one is better?

I know very little about Drag n Drop in Gwt. I searched on internet & it seems that there are 2 different packages (or 2 options) for doing drag n Drop. ...
1
vote
1answer
119 views

SWT Drag to Explorer (Windows) or Finder (OS X)

I've got an SWT application with a bunch of graphical elements. I'd like for the user to be able to drag an element to their Desktop / Windows Explorer / OS X Finder. When they drop the element, I ...
1
vote
0answers
67 views

Using an SWT Text as a DragSource (without selecting anything)

I have a Text control which I would like to be a DragSource. It works if you highlight some text and then drag your selection. However, I'd like to be able to drag the entire contents of the Text ...
1
vote
0answers
46 views

Drag objects from JList, with ghost image effect

I have added to one of the JLists in my java program a Drag and Drop transfer handler. I added a method to this JList so as to have a nice ghost image effect of the selected values I am dragging. This ...
1
vote
1answer
39 views

Drag+Drop in Tkinter

What is the correct/official/proper/recommended way of accomplishing drag/drop in tkinter? My documentation section 24.1.1 includes: Tkdnd Drag-and-drop support for Tkinter. This is experimental and ...
0
votes
0answers
10 views

Dropping Treegride Items into Tabset's Tab in smartgwt

Am working to drag items from treeGride, i made the tree elements gradable by adding the following code:- reeGrid treeGrid = new TreeGrid(); field.setCanSort(false); ...
0
votes
1answer
35 views

HTML5 Drag and Drop - prevent drop for one item

I am looking at this HTML5 demo of a bin that 'eats' anything in the list . I want to modify it to 'eat' only some of the items and others would be rejected. The code is here: ...
1
vote
1answer
71 views

GWT DragStartEvent vs MouseDownEvent

I use plain legacy GWT DnD rather than gwt-dnd library (because I don't need to DnD widgets, but plain data, so I want to keep it simple). I could implement it with an Image widget for the source. ...
0
votes
2answers
203 views

jQuery graph/plot plugin with drag and drop capabilities on the elements?

The short version: I'm looking for a graph/plotting/grid/diagram plugin just like the flot plugin but with drag and drop capabilities on the elements. Any suggestions? The long version: I'm ...
-1
votes
1answer
144 views

java drag and drop

I try to get familar with drag and drop in java but all the tutorials I found were... (getting me angry) All I want is to drag a "PublicUserLabel" from a JList (included in a selfmade JPanel called ...
0
votes
0answers
55 views

Drag and Drop onto an empty ListView in the Netbeans Platform issues

I am having issues with some drag and drop functionality. I have treeview of nodes and I want to be able to drag them from this treeview onto a listview. However the problem I am having is that ...
1
vote
1answer
102 views

JAVA: Thumbnail View with reorder using DND

I have an application of thumbnail viewer that requires displaying thumbnails with the feature to reorder them (using DnD). The thumbnail is a custom component (JLayeredPane). Here is the wire frame ...
0
votes
2answers
305 views

HTML5 game based on drag and drop

I'm building an HTML5 game based on a drag and drop but i'd like to make the object moving automatically, since i'm not using canvas, is there any alternative i can use to the kinetic.js ?
0
votes
1answer
101 views

jstree: prevent parent node from becoming leaf node

I have a simple two-level jstree which allows drag and drop of leaf nodes between parent nodes. When a parent node contains only one leaf, when I drag the leaf out, the parent node "becomes" a leaf ...
12
votes
1answer
249 views

How to implement row reordering with dnd in dgrid

I have created a grid in dgrid that is connected to JsonRest store. This loads data from pyramid backend. I have also added DnD extension to the store. The DnD works, however I don't know how to make ...
0
votes
0answers
46 views

Drag and Drop files from Project Explorer to a tree widget : Eclipse PDE

I would like to drag some XML files that were imported on the project explorer and drop them to a tree widget located on a different View. What I actually want to acquire when a drag and drop a file ...
0
votes
1answer
76 views

drop widget beyond the AbsolutePanel gwt dnd

I'm trying to drop my draggable widgets out of the boundary panel (AbsolutePanel). In my case draggable widgets is an image. And I want to drop it, so that there will be visible only a part of the ...
0
votes
2answers
113 views

Adding multiple BufferedImages to a component for dragging

I want to be able to display two BufferedImages on a component which then will be able to be moved around the component using mouse drags and also overlap one another if dragged over the top of the ...
1
vote
1answer
197 views

Jstree always_copy not working when copying nodes between trees

I am really stuck on a jstree issue; I have 2 trees a “source” tree and a “destination” tree. The “source” tree is a flat tree that contains nodes that I wish to drag over to the “destination” tree to ...
0
votes
1answer
222 views

dojo dnd change the type of the dragged element

I am using Dojo 1.8.3 I want to develop a Customizable Form using dnd. I have a list of form elements in the left (dojo/dnd/Source) and the container in the right (dojo/dnd/Target) witch is supposed ...
2
votes
1answer
211 views

HTML5 Drag and Drop - Firefox is being redirected

I'm trying to implement html5's drag and drop in my app but Firefox is always redirected to dropped image's source. I'm using e.stopPropagation(). In Chromium everything works as expected. Strange... ...
0
votes
0answers
88 views

Dojo nested Sources workaround?

I have one main dojo Source (implemented with Divs) and a couple of nested (implemented with Tables) in each of its targets. I am using dojo 1.6 and can not update it at this point. I searched every ...
1
vote
2answers
97 views

JTree disable/overwrite TransferHandler keyboard actions

I need to get rid of standard keyboard action handler of TransferHandler class I use for my JTree. The JTree implements access-level mechanism that controls if node may or may not be deleted. This ...
0
votes
2answers
109 views

Transferable / URL export: Transfering bookmark data between Java App and Mozilla

I'm writing a Java application and I want to integrate a feature to somewhat modify bookmark data from Mozilla. This sounds very complicated, but it's only a drag and drop issue: 1) I can't really ...
1
vote
0answers
139 views

Enable drop just for specific targets in Swing

I'm trying to implement drag & drop in java with two JList instances. The basic flow works fine. However, when I'm dragging a string from one list, I want to restrict the drop target only for the ...
0
votes
2answers
118 views

extjs grid dnd plugin doesnt create value

I copy this example, and define my model and store. http://cdn.sencha.com/ext-4.1.1a-gpl/examples/dd/dnd_grid_to_grid.html proxy:{ type:'ajax', api:{ ...
1
vote
2answers
49 views

DnD - Why is dragged label displayed below other components?

I've written a basic DnD program that has four JLabels in a row. I've noticed that when I drag a label to the left, it is displayed below the next label. However, when I drag the label to the right, ...
0
votes
1answer
211 views

Java drag and drop custom cursor

I have defined a custom canvas style component, using JPanel, that will support the dragging of objects onto the canvas. What I can't seem to figure out is how to change the drag and drop (DnD) ...
0
votes
2answers
251 views

Animated drag and drop in JTable

Do you know some way to make drag and drop in table more user-friendly? For example: row stick to mouse on drag, and other rows swap places when dragging. Can you recommend me some library for this ?
1
vote
1answer
189 views

Java Multiple Drag and Drop Panels does not work

I have multiple DnD panels layered on a Jpanel with boarder layout..Each DnD panel has a Text field set as a drop target. Only last DnD panel gets the focus. Others do not act as drop targets. Here is ...
2
votes
2answers
415 views

how to drag and drop files from a directory in java

I want to implement dragging and dropping of files from a directory such as someones hard drive but can't figure out how to do it. I've read the java api but it talks of color pickers and dragging and ...
1
vote
1answer
57 views

Drag component to create another one

In all major Java IDEs, there is a GUI designer. When we select a component (A Jbutton, for example) and move it to a JPanel or JFrame, how is it done? Is it a copy of the dragged component that is ...
0
votes
1answer
157 views

Dojo DND creating multiple items

I got a question to which I have no answer after a couple of hours of trying and googling :( I've created three dojo.dnd.Source components. It is used to couple a user to a project so to the left ...
0
votes
2answers
82 views

JLabels, that store ImageIcons, are returned back to original location when the mouse is clicked in the panel

I've added this listener to a JLabel, and I am able to drag the image around perfectly, However, as soon as I click on the panel(in an area where a JLabel is not present) the label returns back to ...
1
vote
2answers
391 views

jstree drag and drop restrict node before and after root

In my jstree I have a Root node which is the parent node of all. I have used dnd plugin. I want to allow drag and drop anywhere in the tree but only inside the root i.e. not before or after the Root. ...
0
votes
0answers
127 views

Make dojo.dnd.Source out of dragged/copied item

I have setup a small interface with a left panel(source) and a right panel(source & target). Dragging/copying from the left panel to the right panel works and a new div is created when dropped. ...
2
votes
0answers
92 views

How to hide Mac/OSX Drag and Drop JTable selection frame

When performing a drag and drop on a JTable there is an outline of the selected cell (selection frame) that appears while dragging. How can I override that behavior and not show anything but perhaps a ...
1
vote
1answer
243 views

dojo.dnd.moveable with position:fixed

I try to use a dojo moveable with a fixed position in the browser window. Unfortunatly everytime I move the div with the mouse the position is set to absolute. What can I do to make the div fixed ? ...
2
votes
1answer
298 views

GWT DND changing DataTransfer image or cursor

When you go to this page for example : http://grooveshark.com/#!/search?q=stackoverflow and then start dragging any song you get this nice Drag and Drop behavior : Then, during the Drag and Drop, ...
1
vote
1answer
178 views

Drag and Drop with JTable on Mac OS X

i have a problem with DnD and JTable on macs. If you start the following program and click (fast) around in the table, sometimes selecting something, sometimes do DnD after a while the application ...

1 2 3 4