I need to do a custom tree with simple drag and drop functions (mainly for reordering tree nodes)
Coding from scratch, are there any guides/examples out there for getting me jumpstarted?
Oh and using jQuery of course!
...
I am looking for a cocoa example that illustrates how to drag an image from one window to another. If not I would like to see an example that shows dragging an image from a source and destination in the same window. If anyone has a link to any such examples I would greatly appreciate it.
...
Hello,
I use a .NET richtextbox and I want to have the EnableAutoDragDrop property set to True. This allows user to drag&drop text, rtf and images around etc.
However, I need to process files dropped into the richtextbox myself - I do not want them to be embedded as OLE objects when they are dropped.
How can I overcome this? Is there ...
I am using the Scriptaculous Draggable/Droppable scripts and have a problem when dragging into a scrolling div. I have the following layout (based on this question):
#grid-container { left:33px; position:relative; width:300px; }
#grid { width:310px; height:400px; overflow:auto; margin-bottom: 15px; }
#grid-container ul { width:40...
Using droppable to provide feedback is not a good option due to their deeply nested structure (using greedy), so I would like to give visual feedback by changing the draggable (i.e., the clone).
Is this possible? Has anyone done this in jQuery?
I've not seen any examples and I'm unclear on how to achieve it. I've tried the over/out e...
Hi, i have some containers that contain some divs like:
<div id="container1">
<div id="task1" onMouseOver="DragDrop("+1+");"> </div>
<div id="task2" onMouseOver="DragDrop("+2+");"> </div>
<div id="task3" onMouseOver="DragDrop("+3+");"> </div>
<div id="task4" onMouseOver="DragDrop("+4+");"> </div>
</di...
Users drag rows up and down in my DataGridView. I have the dragging logic down-pat, but I'd like there to be a dark marker indicating where the row will be placed after I let go of the mouse.
Example from Microsoft Access; I want to drag rows instead of columns
Does anyone know how I'd go about doing this? Is this built-in, or would...
I am trying to drag and drop UIViews within a UIScrollView. I'd like the UIScrollView to scroll if I drag a UIView so that it intersects the top or bottom of the ScrollView. If it touches the top, it should scroll up. If it touches the bottom, it should scroll down. Once the UIView is moved such that it is no longer intersecting the top ...
I'm using the jQuery droppable/dragable to reorder a treeview (made up of ul/li items)
I have no problems making a element and dragging it into the tree
When I define the items to be draggable, the code doesn´t work any more (the items are classed as "droppables" but the drop event won´t run)
Isn't this supposed to be possible?
...
How can I drop a file(or select to open it in Finder) of a type specified in the Info.plist onto my dock icon and then calling a method with the full path of the file?
...
I am using jQuery to detect drop on target, the target in question is a image. If i drag one image upon another, and then drop it, it shall replace the target source with the dropped source. This works fine until two images lies upon each other.
Some of the images lies next to each other and some times the target images overlap. if i dr...
Hi troops,
how would you prevent dragging for some items of your List or DataGrid?
Let's say I had a list with two items: 'Tom' and 'Jerry'. Only 'Tom' should be dragable, not 'Jerry'.
Ideally I had a 'isDragEnabled(item:Object):Boolean' function, which is being queried by the drag source.
My difficulties start with the fact that the...
We're trying to implement drag and drop in Silverlight (3). We want users to be able to drag elements from a treeview onto another part of a UI. The parent element is a Grid, and we've been trying to use a TranslateTransform along with the MouseLeftButtonDown, MouseMove (etc) events, as recommended by various online examples. For example...
I need to implement a drag and drop functionality, where I can define and constraint the route of the draggable object.
Like in http://www.kirupa.com/forum/showthread.php?t=330302 , only that i have the paths designed and not calculated by a math function. So, in fact, as mouse moves I need to tell the object to follow the custom path/mo...
I need to implement "Drag and Drop" operations for the ToolStripMenuItems.
Everything works fine only with ToolStripMenuItems on the first level. I mean I can't move menu item from a submenu to other one. But I can move submenu to top-level menu. I noticed that DragEnter event isn't rised for submenus. Initialization is the same for all...
I found examples in adobe site only to position the object where the mouse pointer is. But i have to place the image in the position of drag proxy image.
...
Hi all!
I've search for some clues on this problem without much success. Hope someone can kick me in the right direction.
I am prototyping a couple of apps where I need to design my own GUI. The GUI is made up by two separated UIViews where one of them contains a small thumb of an image. I want to be able to drag this thumb from the fi...
Is there anyway to create a desktop icon (cross platform/browser) from a linked image on a page without some kind of executable?
<a href="http://www.example.com"><img src="nice_icon.png" /></a>
...
Good day everyone.
I am currently working with a hierarchical tree structure in AS3/Flex, and want to enable drag and drop capabilities under certain conditions:
Only parent/top level nodes can be moved
Parent/top level nodes must remain at this level; they can not be moved to child nodes of other parent nodes
Using the dragEnter ev...
This is an age old problem - but now I'm using scriptaculous its come back to haunt me. When dragging a tree node over other tree nodes I want mouseover to fire for each node I drag over. So I want to position the dragging thing so that its top-left is slightly below and to the right of the mousepointer
can anyone help? - thanks
...