I have two droppable divs and several images that I drag around between them.
Every time an image is dragged and dropped I need to know which droppable div it was dragged from, what position it was dragged from, which droppable div it was dragged into and the position it was dragged into. All this information is then persisted so I have ...
How can I check if an element is being hovered over and/or clicked on and/or dragged? I need this info so I can stop infinite loops for the duration of the drag.
...
I have a flex project that is made of up several custom components that are mostly based on VBox
with Lists of some form or fashion ranging from Tree to AdvancedDataGrid. My main view
consists of two custom components which one contains a Tree and other an AdvancedDataGrid.
Using the standard built-in d-n-d in those components, I'm not...
I have a drag and drop script using an older version of jquery which relied on Interface.js which was what people used for drag and drop before jqueryUI was ever created.
I really need to convert/re-write my cript to use the newer versions of jquery though and the syntax is different now and it will not work with the older interface.js ...
I have the code below that makes a list of div's drag and droppable, on drop it returns a list of the id's in there new order.
I need to add 2 features to this code somehow.
1)
In a dropdown select list there will be 5 options. 3,6,9,12,15 and when a user picks one of these numbers I need to highlight the first X number of the div's....
Some design specs require for the avatar to be under the mouse cursor when the item is dropped.
to get around this i can easily check the drop position to see if the item was dropped within a source andprogramatically insert the node(s).
My problem is trying to get a reference of type dnd.Source for the source that was dropped into.
H...
I've seen this done with a signed Java Applet, but is it possible with Flash?
...
I am trying to use this function from a COM API which enables the window to receive drops (as in drag & dop) from another application.
It is pretty straightforward in Windows Forms and works:
public void EnableDropSupport(System.Windows.Forms.Form form)
{
IntPtr hwnd = form.Handle;
_comAPI.RegisterDropWindow((int)hwnd);
}
But I...
I have this code for some elements to be dropped
var $tab_items = $("ul:first li",$tabs).droppable{ tolerance: 'touch' ,....
and it´s work ok, but the problem it´s when I load another button by ajax or by javascript,
don´t work because the new element don´t have binding for this event.
In other similar situation I found a solution usi...
Hi all,
I have two div's that are sortable within the div's and i also want to drag n drop them across the two divs.Can anyone tell me how can i do that.
For example i have two list of members in two divs i want them to be draggable n droppable in across the divs.
thanks
...
ok i've got a table with drag and drop classes in a div that has it's overflow set to "auto", this allows me to hide part of a schedule and only puts a scroll bar on the bottom. however, i just created some droppable elements outside of the scrollable div and my draggable elements can't leave the scrollable div. any ideas?
...
ok i've got a scrollable div, but when i drag my draggable outside of that overflowed div and try and drop it on a different drop zone. it gets dropped onto the hidden elements underneath the drop zone i want it to get applied to. is there any to give the drop that i can see "priority" ?
...
Is it possible to do a basic 2 column wide sortable drag/drop list with jquery, WITHOUT using jqueryUI?
I would like to make something more lightweight but still use jquery. All I need is drag/drop capabilities, which sortable function works perfect but I need to be able to have 2 columns act as 1 unit, so a serialized list will show t...
I have two div.containers. Both containers have div.item. With jQuery, how can I swap div.item elements by drag & drop? Both element should able to re-swap again.
Is there any simple way to do this?
Thanks...
...
Hi,
In Drag&Drop if I want to customize the cursors, I can subscribe to GiveFeedback on the drag source and set e.UseDefaultCursors = false, and the render the content I want.
But that only work if the drag source is my application. If I want to do the same when dragging files from explorer, for example, I can not subscribe to that eve...
I have a draggable div, that needs to be dropped on a droppable. If it is dropped correctly, the droppable calls an AJAX request. If the draggable does not have a valid id or the AJAX request fails, the draggable should be reverted to it's original position. Is that something that can be done with jQuery?!
Any help is greatly appreciate...
This is a two-part problem:
A) I'm implementing several irregular drag-drop operations in Flex (e.g. DataGrid ItemRenderer into Tree). My preference was modifying DragManager operations to meet my needs, and in fact using DragManager allows me to do everything I need, but I'm having serious issues with performance. For example, draggin...
Hi guys,
I'm implementing a drag & drop script in (plain) JavaScript. All good, except one thing. For example, in Firefox (probably not only there), if you drag an object the second time, it is getting dragged as a built-in browser feature (for easy drag & drop image saving to desktop, for example, I think). Well this kind of ruins my s...
I need to capture drag and Drop Events of WebBrowser Control in WinForm C#. Is there any way ?
...
I have WPF application with drag-n- drop inmplementation...
Whenever I drag tree item on a Grid it is processed by DragDrop Event of that Grid, but every time it get fired twice what could be the reason ??
Below is code for implementing drag drop on treeview
void treeViewGroups_MouseMove(object sender, MouseEventArgs e)
{
try
...