Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
622 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
3answers
380 views

Eclipse 3.6 lag when copy and pasting

I'm having a strange problem with Eclipse 3.6 where copy and pasting causes a lot of lag (total eclipse lockup for 5-10 seconds). I'm using the Helios 3.6 PHP build but have also tried Galileo to no ...
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> ...
1
vote
0answers
35 views

dojo drag and drop: don't want new nodes appended

I have a user interface where some properties are represented as draggable items, and they can be dragged off a toolbar and dropped on some receiving item which is then updated. For this I'm using ...
1
vote
1answer
477 views

How to write a creator for dnd enabled dijit tree

I have a digit tree that has dnd enabled via the dndController="dijit._tree.dndSource" option.Currently when drag is initiated the avatar content seems to be right aligned. The avatar is automatically ...
1
vote
2answers
242 views

Can we have nested targets in Dojo?

I have two divs nested under a parent div and I want all these to be source as well as targets for dojo.dnd. I want to be able to add nodes to the div over which the content was dropped and also ...
0
votes
1answer
30 views

set id when using insertnodes in dojo

when using insertNodes a unique id will be created for the nodes. insertNodes(addSelected, data, before, anchor) How do we assign a certain name / text as an id for the new nodes?
0
votes
0answers
30 views

set attribute while using insertnodes in dojo

I'm new with dojo and might be using wrong terms..please bear with me :) I use dojo dnd in my ASP page, and it works well. the problem appeared when i need to 'embed' information in the nodes. this ...
0
votes
0answers
32 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
1answer
208 views

Help with Dojo Drag & Drop

Hi I am trying to implement some drag and drop functionality into a project but am having a bit of difficulty with a few aspects. One of the problems I am having is with the creation of a custom ...
0
votes
0answers
78 views

dojo What's the drop event for dojox extendedgrid dnd?

I'm trying to drag-and-drop a row from an extended grid to another one and I want to capture the drop event to fire a callback function. I've tried with onDrop, onRowDrop, but those events do not ...
0
votes
0answers
307 views

dojo dnd : dragging tree nodes onto external div & creating child div on node drop

I am trying to dnd a tree node onto a div, post drop I have to create & append a new div onto the target div container(tree node dropped on). myDndObj2 = new dojo.dnd.Target("myTargetNode",{ ...
0
votes
1answer
136 views

Dojo Query, Query?

I am trying to use dojo drag and drop within an application. Although I have ran into a little problem basically when a user drops an item into a dijit pane I would like it to target the table below ...
0
votes
1answer
289 views

How to prevent dojo.dnd.moveable to make input fields disable

I use dojo.dnd.Moveable for making DIVs drag-able & drop-able in the page (Something like iGoogle). But the problem is after making them moveable, all of input fields (like text-boxes and ...
0
votes
2answers
760 views

Use Dojo Drag and Drop together with Dojo Moveable

I'm using Dojo.dnd to transfer items between to areas. The problem is: the items will snap into place once I drop them, but I'd like to have them stay where I drop them, but only for one area. Here's ...
0
votes
2answers
327 views

how to get/set an acceptance of a dojo.dnd.source

I need to call a function that changes the dnd.source acceptance previously created. Any idea to how to change an existent dojo.dnd.source would be greatful. thanks. Code i used to create: var ...
0
votes
1answer
821 views

Can't select text in input box on IE

I have an input box that is inside of a div, the div has a background image and the input box inside of it is positioned and limited in size / font to work nicely with the background image. In FF ...