Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
524 views

Drag and Drop in GWT 2.4

I have a custom widget that is actually an image, and i would like to be able to drag it inside an AbsolutePanel and get its coordinates every time. I would like to use the new DND API from GWT 2.4, ...
4
votes
1answer
79 views

JTreeTable DnD crazy blinking drop cursor

I am using a slightly modified version of the Sun's example JTreeTable backed by my own model. That would be the third example (bookmarks one at ...
4
votes
1answer
387 views

dojo.dnd one item at a time only

Using dojo.dnd, I want to allow a user to drag only one item at a time, rather than any arbitrary number, as per the dojo's default behaviour. At the moment, a user can hold Ctrl and click multiple ...
3
votes
1answer
80 views

how to get file paths from files dragged from windows explorer into JFrame in Java

I need to get the dropped files' paths. I have implemented the drop(DropTargetDropEvent e) method in my JFrame which implements DropTargetListener which has the following code: public void ...
3
votes
8answers
2k 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. ...
3
votes
1answer
453 views

Java Drag and Drop an Image and Show the image thumbnail while dragging

I have a grid layout with image nodes and I want to add in my application the dnd functionality, for example when I drag and drop an image node to an target JPanel make some actions for example show ...
2
votes
0answers
51 views

jsTree leaf drag and drop with auto creation of its parent hierarchy

I have two jstree , left and right. From start I have 3 level tree in left tree, and I can drag and drop level 1 or level 2 at right side, but dont allow to drop leaf on right side. Now I want some ...
2
votes
0answers
59 views

How to implement a drop target for the SWT browser widget

How to implement a drop target for the SWT browser widget? Taking a Browser instance as parameter to the DropTarget constructor causes no notification of any registered drop listeners. Browser ...
2
votes
2answers
63 views

Java: How to drag and drop on a TrayIcon?

How can I catch a drop event of a text / file / any other DataFlavor onto a java.awt.TrayIcon (placed in a java.awt.SystemTray)?
2
votes
3answers
621 views

Disabling copying in dojo.dnd

By default a dojo.dnd.Source container allows you to hold Ctrl to duplicate/copy a dragged item rather than just move it. I know you can set singular=true to stop multiple items being dragged but how ...
2
votes
0answers
93 views

Where can I find a database (sqlite, csv, etc) of Dungeons & Dragons Basic Set data?

I'm writing an engine for Dungeons & Dragons Basic Set (Red and Blue Box) First Edition (1E) in Python and would like to be able to read from an existing database of what is in the players and ...
2
votes
1answer
552 views

JSTree DND Event at Drag Starting Point

I have a external draggable object (draggable implemented through jstee's dnd) on which I need to perform a check before the object starts dragging. I'm looking for a method much like "drag_finish" ...
2
votes
1answer
431 views

How to find out the drag source component in the drop target TransferHandler?

Question is regarding Java 5 and Drag n Drop. Is there a way to determine the drag source component in the drop target TransferHandler? I need to know this in my canImport(..) or importData(..) ...
2
votes
1answer
1k views

Drag and Drop in GWT using gwt dnd

I have been really struggling to get Drag and Drop working in GWT. Last 3 days, I was trying to create a basic drag and drop application and failed. Currently I can drag it around, but I am unable to ...
2
votes
1answer
582 views

Dojo dnd input box

I'm trying to move the contents of an input box using Dojo DnD, so the HTML looks something like this: <div id="input_box"> <input type="text" class="my_input_box_style" /> </div> ...
2
votes
1answer
394 views

How to receive key events during a drag&drop?

I'm currently trying to receive key events during a drag and drop, but it seems to me that the focus is taken away while dragging so that I can't listen to any key events. I'm dragging a JComponent ...
2
votes
2answers
41 views

Detecting drops from the same process

Is it possible for a class implementing DropTargetListener, to detect whether the stuff being dragged comes from the same process of from elsewere?
2
votes
1answer
1k views

Dojo Drag and drop: how to format a dropped item?

I'm using Dojo trying to build an application with dojo's dnd. I've looked around for an answer to this problem but I'm just not sure how to accomplish this. I have a Source object in which there are ...
2
votes
1answer
362 views

SWT DropTargetListener has empty event data under Mac OS X

I'm currently experiencing a weird platform inconsistency between Mac OS X and Windows/Linux. I've implemented an SWT DropTargetListener and tried to analyze the data dropped in the dragEnter method. ...
1
vote
1answer
22 views

SWT, using a transparent drag image against an animated background on Windows

I have a custom widget based on Canvas that displays some items that the user can drag sort. When the user drags something, I am using an Image of the dragged item as the drag image: final DragSource ...
1
vote
3answers
64 views

Swing drag and drop

I would like to implement a game board in swing (needs to be a table, though about either jtable or gridlayout etc ...) where I will be able to drag and drop a picture on to this game board and all ...
1
vote
1answer
80 views

How to select a shape on a drawing panel?

I am creating a program where I can draw different shapes onto a drawing canvas. I want to add a button that, after clicked, allows me to select a shape and then drag/translate it to a different spot ...
1
vote
2answers
74 views

Javascript Drag and Drop: removing dragged element following successful drop

I'm using the native drag and drop API in javascript. How can I remove a dragged element from the DOM following a successful drop? I've tried listening to the drop event, but this only gets fired ...
1
vote
1answer
228 views

dijit.Tree DnD from tree to tree - child nodes don't get created in target tree

I have two dijit.Trees: srcTree and trgTree. I have implemented the trgTree.itemCreator function and the node that gets dropped is properly created in the target node/tree, but the child nodes of the ...
1
vote
1answer
119 views

How can I make gwt-dnd allow scrolling while dragging?

I have an application that uses gwt-dnd to make boxes draggable, but when there are too many boxes it is difficult for the user to drag them to reorganise them. Currently they have to drag by a few ...
1
vote
1answer
228 views

SWT: Drag-and-drop Internal Object

My application has a canvas and a table, I need to add drag-and-drop capabilities to it. However, I read in a tutorial that Transfer converts the data I want to move into a platform-independent type. ...
1
vote
2answers
113 views

Custom DragAndDrop in Java

I Have a JList with custom objects. I would like to select the object from the list and drag and drop to a JPanel. But I'm confused about all terms in DnD tutorials. I think is there more than one way ...
1
vote
1answer
156 views

Javascript FileAPI: Iterating Directories?

Firefox 3.6 let's you drop a directory onto some element (using the Drag And Drop API) and process those files with the FileAPI. How does that work with directories? The Mac OS X Finder displays some ...
1
vote
1answer
485 views

JsTree with dnd plugin, always copy

I have 2 trees using jsTree and dnd plugin. I want that each drag operation to be a copy instead of a move. There is a "copy_modifier" which works Ok when pressing a modifier key, but I want copy to ...
1
vote
0answers
130 views

Dojo and extending dojo.dnd.Target

I'm trying to extend the dojo.dnd.Target class, but have failed as for now. I want to create several different classes that extend target that will do some different tasks for me. The effect that I ...
1
vote
2answers
652 views

How can I disable moving in jsTree, but not disabling drag'n'drop plugin?

How to disable moving in jsTree 1.0, but not disabling dnd plugin? Thanks.
1
vote
1answer
245 views

Java: Cut item from JTree with lazy-deleting

I've implemented Drag'n'Drop and CCP on my JTree (I've created my Transferable and TransferHandler classes). By default Cut action (CTRL-X or SHIFT+DELETE keys) delete item from JTree (JTreeModel), ...
1
vote
2answers
998 views

GWT DnD: Keep draggable within an AbsolutePanel

I made a MultiSlider widget using the GWT and the gwt-dnd addon to rate texts. On the screenshot, you can see the slider button with value 50 dragged outside the slider bar. It can't be dropped ...
1
vote
3answers
3k views

dojo - mouse(x, y) - drag and drop - frustration

I'm attempting to drag an object using dojo.dnd but want the avatar to be in the same position as the object was (relative to the mouse) i.e. if a person clicks in the middle of the object then the ...
1
vote
1answer
605 views

dojo drag and drop: don't want to sort items

I have a dojo.dnd Source object that I just want to list out normally, without the user being able to sort the objects. Is this possible?
1
vote
1answer
475 views

Law of Demeter doesn't make sense in my case

Looking on this answer I understand that you should not copy private pointers using friendship in C++ like I did in my program: class bar; class foo { private: some_smart_pointer<int> ...
1
vote
2answers
1k views

SWT Drag and Drop support for Text widget

I've written an application recently using SWT. In one of its dialog box, I have a few widgets, one of which is Text, which is designed to support DND with other widgets. I've first added DND support ...
0
votes
0answers
25 views

GWT native drag & drop - DragStartEvent not firing on IE9

I have GWT 2.4.0 native drag and drop working with Chrome, Safari and Firefox. But on IE9, the drag start event does not fire and the cursor seems to go into a text selection mode. Any ideas? public ...
0
votes
0answers
31 views

Dojo drag and drop for “list in list” (nested lists)

i have a following HTML, and i use dojo drag and drop to sort attributes and to drop them into another section. But how can i sort also sections? It doesnt work to me, what i have created: <ul ...
0
votes
0answers
20 views

MVC View and DOJO Drag&Drop. How to submit changes?

In MVC project I have a list, which will be dynamicaly ("for" cycle) generated in VIEW with following helpers (for simplicity i post only small part of code): <form> <!--...some code --> ...
0
votes
0answers
30 views

how to implement Drag and Drop in GWT

I'm looking in this tutorial GWT DND I want this Demo 5 to implement in my project , but i am confuse how to implement it , as there are different classes for the source code, Source code: ...
0
votes
0answers
34 views

disable text selection during dnd in dojo

I'm using DnD functionality on enhanced grid. While dragging the selected row on before/after some rows, text in the between rows being selected. could anybody help me about how to disable text ...
0
votes
1answer
45 views

GWT widget is breaking apart when draged and dropped with gwt-dnd

So, I am having a very difficult time explaining my problem, I hope this is clear. Please tell me if I can clarify anything a little bit better! I have a GWT web application that is using gwt-dnd to ...
0
votes
1answer
69 views

mouse pressed->drag->released. in java

Excuse me: I just can't know how to link these successive operation? Mouse pressed and then drag then release. If an user doesn't do this operation some action won't happen... Should I add code as ...
0
votes
1answer
74 views

Containment for draggable element

How do I define the containment area for a draggable to have it draggable outside of its parent element? I have two droppable containers that have draggable divs in them. I want to drag the ...
0
votes
0answers
30 views

How can I save or track the drag and drop position of the items (dojo dnd)?

I have done drag and drop using dojo dnd.Now I have to track/print the dragged item position number (current item position number) and target item position number Where I want to drop the Item.For ...
0
votes
0answers
72 views

Dojo.dnd.Container - sync() design

In my widget (which is a dojo. dnd.Source ) I want to implement a sorting feature . The user will be given an option to choose between multiple fields upon which to sort the nodes. I was planning to ...
0
votes
0answers
110 views

Save the structure order with dojox.grid.Enhanced.Plugins.Dnd

Actually my dojox enhanced grid can reorder his columns: the Dnd plugin helps me to do that. But i'd like to save the new order with the dojox storage to set the user preference at his next visits. ...
0
votes
1answer
160 views

gwt-dnd and dragging chess pieces

When a chess piece is dragged and dropped the move needs to be checked for validity. How do I carry around the data of which of the 64 squares the original square of the piece came from and get at ...
0
votes
1answer
92 views

JList drag CustomObject but drop String

private JList attributesList; public AttributeGroupComponent(ArrayList<?> items) { attributesList = new JList(items.toArray()); initGui(); } private void initGui(){ ...

1 2