active questions tagged drag-and-drop - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T14:45:41Zhttp://stackoverflow.com/feeds/tag/drag-and-drophttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1935925/drag-drop-of-a-dynamically-created-shortcut2Drag & drop of a dynamically created shortcutRedGlyph2009-12-20T14:09:27Z2009-12-21T05:55:47Z
<p>I have a C# application that creates shortcuts to launch other programs with specific arguments and initial directories. I would like the user to be able to drag a shortcut from the Windows form and drop it anywhere relevant like the desktop, the start menu, and so on but I don't really know how to handle that, could anyone point me in the right direction?</p>
<p>I have seen a few samples using PInvoke and <a href="http://msdn.microsoft.com/en-us/library/bb774950%28VS.85%29.aspx" rel="nofollow">IShellLink</a> like <a href="http://vbaccelerator.com/home/NET/Code/Libraries/Shell%5FProjects/Creating%5Fand%5FModifying%5FShortcuts/ShellLink%5FCode.asp" rel="nofollow">this one</a>, or read answers on SO like <a href="http://stackoverflow.com/questions/1501608/how-do-you-create-an-application-shortcut-lnk-file-in-c-with-command-line-arg">here</a>, which already help create shortcuts and save them in a .lnk file. I assume I have to hand over data in a <code>DoDragDrop()</code> call when the user initiates a drag operation, for example by handling a <code>MouseDown</code> signal. That's as far as I got, I suppose I need to know exactly which type the target is expecting to accept the drop, and how to serialize the shortcut, but couldn't find any information on that part.</p>
<p>Perhaps another option would be to get the location of the drop, and manage that from my application, but there again I'm a bit clueless as how to do that.</p>
<p>The framework version is currently 3.5, and I'm only considering Windows platforms.</p>
<p>Thanks in advance for your help!</p>
http://stackoverflow.com/questions/1888182/why-is-drop-allowed-even-if-effects-dragdropeffects-none-is-set0Why is drop allowed even if Effects = DragDropEffects.None is set?Trainee4Life2009-12-11T13:48:52Z2009-12-20T17:37:20Z
<p>Dragging happens from "source" to "target". When the source calls DoDragDrop() with allowedEffects as DragDropEffects.Copy, then I'm able to cancel the drop by setting Effects = DragDropEffects.None at the target (in DragOver event).</p>
<p>But the same situation fails when I set my allowedEffects as DragDropEffects.Move.</p>
<p>To reproduce the situation, download the sample from <a href="http://jaimersamples.members.winisp.net/samples/dragdrop/drag.zip" rel="nofollow">http://jaimersamples.members.winisp.net/samples/dragdrop/drag.zip</a></p>
<p>Change line.. (to DragDropEffects.Move)</p>
<pre><code>DragDrop.DoDragDrop(this.DragSource, data, DragDropEffects.Copy);
</code></pre>
<p>Add line..</p>
<pre><code>void Window1_DragOver(object sender, DragEventArgs args)
{
args.Effects = DragDropEffects.None;
</code></pre>
<p>And also comment out the entire, DragSource_GiveFeedback..</p>
<pre><code>void DragSource_GiveFeedback(object sender, GiveFeedbackEventArgs e)
{
//System.Diagnostics.Debug.WriteLine("DragSource_GiveFeedback " + e.Effects.ToString());
</code></pre>
<p>Is there some kind of bug in the framework, or am I just not able to see something obvious?</p>
http://stackoverflow.com/questions/1934474/drag-and-drop-into-a-dialog0drag and drop into a dialogparavamu2009-12-19T23:37:42Z2009-12-20T14:43:59Z
<p>Hi,
I am trying hard to make this work! I have a list of images inside a div which i make draggable. I also have a dialog which is triggered (open) when dragging starts. For some reason I cannot drop inside this dialog. I can drop everywhere else on the page except inside a dialog. here is my code:</p>
<p></p>
<pre><code> $(document).ready(function(){
// Executed once all the page elements are loaded
//setup new person dialog
// Change overlay color and opacity
$('#sample').dialog({
//dialog options
autoOpen: false,
draggable: false,
modal: false,
show: 'explode',
closeOnEscape: true,
position: 'top',
minHeight: '400',
minWidth: '600',
width: 750,
title: "Some title",
open: function(type, data) {
$(this).parent().appendTo("form");
}
});
$(".random-img").draggable(
{
cursor: "move",
helper: "clone",
opacity: "0.5",
zIndex: "2700",
containment: "document",
handle: ".random-img", // makes toolbar the dragable part
drag: function(ev, ui) {
$('#sample').dialog("open");
}
}
);
$("#sample").droppable(
{
accept: ".random-img",
tolerance: "touch",
drop: function(ev, ui)
{
var droppedItem = ui.draggable.clone().addClass('sclass');
$(this).append(droppedItem);
}
}
);
});
</script>
<html>
<head> Page test </head>
<body>
<div class="random-img">
<img src="images/someimage.jpg" />
</div>
<div id='sample'>
</div>
</body>
</html>
</code></pre>
<p>Any help or insight will be greatly appreciated. </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1112129/2-questions-about-drag-and-drop-with-javascript02 questions about drag and drop with JavascriptDavid2009-07-10T21:38:19Z2009-12-20T14:00:04Z
<p>Hello,</p>
<p>I'm trying to be able to drag random highlighted text or images on a random page that is not written by me, thus I cannot simply wrap the text in a div and make it draggable.</p>
<p>Is there any way to get highlighted text or images on a random page, like say Yahoo, and drop it into a container that can recognize what was being dropped into it (like content and content-type) without it even being an explicitly declared draggable?</p>
<p>I've been playing with jQuery, but can't figure it out.</p>
<p>Any help would be greatly appreciated.</p>
<p>Regards,
David</p>
http://stackoverflow.com/questions/1877402/wxpython-handling-drag-and-drop-in-a-parent-object-problem-with-event-propagat0wxPython: Handling drag-and-drop in a parent object - problem with event propagationDave Kirby2009-12-09T22:32:24Z2009-12-20T05:56:50Z
<p>I have a wxPython program where I want to be able to drag groups of controls around to reorder them. Each group of controls is on a panel, and I want the panel object to handle the drag-and-drop.</p>
<p>Currently it works if you click and drag on the panel itself, but it doesn't work if you click on any control inside the panel. This is because the wx.EVT_LEFT_DOWN event that I am using to trigger the drag is not a command event, so is not propagated up to the parent panel.</p>
<p>The only way I can think of to get round this is to bind that event to the panel's handler for every control on the panel.</p>
<p>This does not seem very elegant to me - either I have to explicitly do it when I create each child event, which breaks encapsulation, or the panel recurses through the child controls and does the binding - this seems dangerous, since the individual controls may already be using that event for other purposes. Ideally I would like the controls on the panel to not need to know anything about the DnD.</p>
<p>Does anyone know of any alternative solutions? Are there any command events that I could use to initiate dragging? Or anything else I haven't thought of?</p>
http://stackoverflow.com/questions/1914996/whos-got-the-focus-during-a-dragdrop0Who's got the focus during a Drag&Drop?André Hoffmann2009-12-16T14:30:47Z2009-12-19T23:43:46Z
<p>Hi there,</p>
<p>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.</p>
<p>I'm dragging a JComponent subclass that implements KeyListener and requests the focus in the DragSourceListener's dragEnter method, but my assumption is that the focus is taken away from it afterwards.</p>
<p>Now, who's got the focus and how can I take it away back to my JComponent. Or is there a different approach that is more suitable for dnd?</p>
<p>Thank you in advance.</p>
http://stackoverflow.com/questions/1927662/jquery-draggable-how-do-i-create-a-new-draggable-div-on-the-fly-that-can-then-b1Jquery Draggable - How do I create a new draggable div on the fly that can then be dragged?Matt2009-12-18T11:28:03Z2009-12-18T12:14:59Z
<p>I'm creating a day planner using jquery, draggable and droppable.</p>
<p>When a job is dragged from the unassigned column into a hour time slot, the original draggable item is removed, and a new div is placed into page, with the job details.</p>
<p>This newly created div block of code, has all the parameters in it to make it draggable . When it's rendered on the page load, these assigned jobs are draggable .</p>
<p>It's only when they are created on the fly using javascript is something occurring that stops them from being dragged about.</p>
<p>When I create these new div tags on the fly with Javascript, is there something I need to do to tell the jquery that these new items are meant to be dragged?</p>
<p>(thanks in advance as always)</p>
<p>Steps</p>
<ul>
<li>We have a div container with a list of jobs (more divs) inside it. #unassignedjobs is the parent div for these jobs, with the following jobs inside, #jobN ,#jobN2, #jobN3</li>
<li>We have another area which we can drop these items into, and inside this area is a container for displaying jobs, per person, lets call these #person1 and #person2.</li>
<li>The aim is to drag a job from the unassigned jobs list, and place it into the persons lists of jobs</li>
<li>At the minute when I do this, I <strong>refresh</strong> all of the html inside of #person1 when an item is dropped and using ajax/php to remake the list of jobs for this person (#person1) and repopulate #person1 using <strong>innerHTML</strong>.</li>
<li><p>Every time a page is created from php any jobs inside #person1 are present when jquery is activated, making them draggable. <strong>It's only when the refresh and re-population of the innerHTML is ran are the items (#jobN or #jobN2) unable to be dragged</strong></p>
<p>var createdContent = httpRequest.responseText;</p>
<p>jobcolp.innerHTML = createdContent;</p></li>
</ul>
<p>Hopefully this makes the problem a little more clearer.</p>
http://stackoverflow.com/questions/1923239/flex-saving-a-new-order-of-items-of-a-horizontallist-through-amf0Flex - Saving a new order of items of a HorizontalList through AMFAlberto Marcone2009-12-17T17:17:41Z2009-12-17T22:24:44Z
<p>Hi,
I've been working with the drag-and-drop of items inside an Horizontal List in Flex. It works fine, but now I need to save the new order through AMF in my database. I'm pretty sure it's quite easy, but I haven't figured it out yet. </p>
<p>Is there a way to cycle (after the reordering) all the items so that I can get for each item its (new) index?</p>
<p>And I noticed that even if I change the order, the order in the dataProvider is always the same...</p>
<p>This is my list:</p>
<pre><code><mx:HorizontalList id="horizontalList"
allowMultipleSelection="true"
allowDragSelection="true"
dragEnabled="true"
dropEnabled="true"
dragMoveEnabled="true"
labelField="lbl"
iconField="src"
itemRenderer="CustomItemRenderer_gallery"
columnCount="5"
columnWidth="125"
rowHeight="125"
horizontalScrollPolicy="on"
doubleClickEnabled="true"
click="{click(event);}"
dragDrop="handleBtnReorder(event)"
doubleClick="doubleClick(event);" />
</code></pre>
http://stackoverflow.com/questions/1922559/jquery-drag-drop-into-a-text-area0jQuery Drag & Drop into a Text AreaOneNerd2009-12-17T15:34:42Z2009-12-17T16:58:53Z
<p>Using jQuery, and looking to let user drag a placeholder into a text area.</p>
<p>Each placeholder is a <code><span></code> which has a <code>class='placeholder'</code>. The text area <code>id</code> is simply <code>'main_text'</code>.</p>
<p>So, user should be able to drag each placeholder <code>span</code> on top of text area, drop it, and then text gets inserted.</p>
<p>Most desirable effect would be to insert text where they drop the placeholder, but I have pretty much given up on that one. At this point, just to get it working so it inserts the text anywhere at all would be a good start.</p>
<p>Has anyone successfully done this? Thanks -</p>
http://stackoverflow.com/questions/1919530/flex-how-can-i-drag-the-actual-element-rather-than-a-proxy0Flex: How can I drag the actual element rather than a proxy?ChrisInCambo2009-12-17T04:48:41Z2009-12-17T11:18:37Z
<p>Hi,</p>
<p>I'm trying to implement a dragging system which can only be described as similar to dragging the map on Google Maps. I can set up dragging easily in Flex, but unfortunately the standard model of dragging i.e. dragging an element proxy and dropping it in another element is not what I'm after.</p>
<p>Is there anything built into flex where the actual element rather than a proxy can be repositioned in a different place within the same parent? Or will I have to hand code something using mouse events as you would if implementing a solution in JavaScript?</p>
<p>Cheers,</p>
<p>Chris</p>
http://stackoverflow.com/questions/1918909/moving-objects-on-lower-layers-in-interface-builder0Moving objects on lower layers in Interface BuilderCasebash2009-12-17T01:23:52Z2009-12-17T01:23:52Z
<p>Interface builder allows you to move objects using drop and drag. Unfortunately, some objects may be on lower layers. These can be selected using shift-right click, but this doesn't allow drag and drop. Is there any way to achieve this?</p>
http://stackoverflow.com/questions/1916775/jquery-ui-drag-drop1jQuery UI Drag & DropJohn2009-12-16T18:45:18Z2009-12-17T00:09:33Z
<p>I tried using the solution posted here: <a href="http://stackoverflow.com/questions/811037/jquery-draggable-and-overflow-issue">http://stackoverflow.com/questions/811037/jquery-draggable-and-overflow-issue</a>, but I can't seem to get it to work for myself. I have a container div (div#container) which wraps around all of my draggable divs. The div#container has its overflow set to auto. I've used the scroll option and set it to false, but it still scrolls. Any ideas?</p>
<p>My HTML:</p>
<pre><code><div id="container">
<div class="draggable"> Drag Me </div>
<div class="draggable"> Drag Me </div>
<div class="draggable"> Drag Me </div>
<div class="draggable"> Drag Me </div>
<div class="draggable"> Drag Me </div>
<div class="draggable"> Drag Me </div>
<div class="draggable"> Drag Me </div>
<div class="draggable"> Drag Me </div>
</div>
</code></pre>
<p>My CSS:</p>
<pre><code>div#container {
width: 300px;
height: 300px;
overflow: auto;
}
div.draggable {
padding: 3px;
font-size: 1.4em;
}
</code></pre>
<p>My Javascript:</p>
<pre><code>$(function(){
$(".draggable").draggable({
scroll: false
});
});
</code></pre>
http://stackoverflow.com/questions/1900076/how-to-create-dnd-on-drop-handler-for-dijit-tree-dojo-1-30how to create dnd on drop handler for dijit tree (Dojo 1.3)Fell2009-12-14T10:18:34Z2009-12-16T08:16:06Z
<p>Hi all,</p>
<p>Im loading my dijit tree with json data and it is rendering properly.I have specified the dndController as dijit._tree.dndSource.</p>
<p>Example json entry :
id:'3',type:'category',name:'Camera',model:'Nikon'</p>
<p>I would like to drag elements to a target and on the drop of the element I would like to access the model attribute specified in the json data. However I am unable to do so with the following code:</p>
<p>var m = dojo.dnd.manager();
dojo.forEach(m.nodes, function(node){
alert(m.source.getItem(node.id).data.model);
});
I get a javascript error on the alert line sawing that it is undefined.</p>
<p>Can someone please provide a concise example as to how the json data attributes of the item that is being dragged can be accessed?</p>
<p>Also I want to make only the leaf nodes draggable. How can I achieve this ?</p>
<p>Thanks,<br>
Fell</p>
http://stackoverflow.com/questions/1805210/jquery-drag-and-drop-using-live-events1jQuery Drag And Drop Using Live Eventsdevongovett2009-11-26T19:02:48Z2009-12-16T03:52:39Z
<p>Hello. I have an application with a long list that changes frequently, and I need this the items of this list to be draggable. I've been using the jQuery UI draggable plugin, but it is slow to add to 400+ list items, and has to be re-added every time new list items are added. </p>
<p>Does anyone know of a plugin similar to the jQuery UI draggable plugin that uses jQuery 1.3's .live() events? This would solve both problems.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1824924/jquery-drag-and-drop-plugin-between-tables0Jquery drag and drop plugin between tablesMartin2009-12-01T09:08:22Z2009-12-15T12:16:23Z
<p>I'm looking for a jquery plugin that makes it possible to drag and drop between two different tables. I have a table containing search results and I want to make it possible to drag each result to another table to be able to add them to that table. Anyone got an idea on how to do this?</p>
http://stackoverflow.com/questions/1873244/flex-tree-control-drag-drop-item-position0Flex tree control drag drop .item positionAmitd2009-12-09T11:20:56Z2009-12-14T12:51:37Z
<p>hi guys,
just facing a difficulty with tree control drag drop..<br>
Suppose i have tree with drag-drop enabled.
I want to which node(id) is droped inside which node. </p>
<p>1]if i drag "Cat1" node inside "Cat3",i want to identify
ids of siblings of "cat1",and "cat3".</p>
<p>2]in general i want to know the ids of current element being moved along with<br>
its new parent and new position and save these postions.</p>
<p>3] Also "cat4" when moved outside "cat3",i want know its position and its siblings id.</p>
<pre><code><mx:XML id="treeDP">
<node label="Categories">
<node label="Cat1" id="1" isBranch="true"/>
<node label="Cat2" id="2" isBranch="true"/>
<node label="Cat3" id="3" isBranch="true">
<node label="Cat4" id="4" isBranch="true"/>
</node>
</node>
</mx:XML>
<mx:Tree id="compBalanced"
width="420" height="439"
dataProvider="{treeDP}"
showRoot="false"
labelField="@label"
doubleClickEnabled="true"
dragEnabled="true"
dropEnabled="true"
dragDrop="onDragDrop(event)"
/>
</code></pre>
http://stackoverflow.com/questions/730026/extjs-sortable-elements-list0ExtJs sortable elements listNikolai2009-04-08T13:33:45Z2009-12-14T00:00:01Z
<p>Is there any implementation of sortable list in ExtJs as JQuery UI .sortable has ?
Or how could I drop element using jQuery UI sortbale from eastern panel of ExtJs layout to droppable sortable element in central panel of layout ? Now dragging element hides under layout :(</p>
http://stackoverflow.com/questions/449872/how-drag-and-drop-of-files-is-done1How drag and drop of files is done?kasperasky2009-01-16T08:42:01Z2009-12-12T03:15:10Z
<p>as in winamp or vlc player, how to do a file drag and drop? i mean i want to know what sort of coding goes into application? i want to know for c++</p>
http://stackoverflow.com/questions/1465988/capture-dragdrop-event-of-richtextbox-c0Capture DragDrop Event of RichTextBox C#Sandhurst2009-09-23T13:26:31Z2009-12-11T21:00:02Z
<p>I have a custom RichTextBox Control derived from RichTextBox Control that Windows provides.</p>
<p>I am unable to capture the dragDrop Event though the DragEnter event is getting captured, but I dont know why the dragDrop event is not.</p>
<p>I have following properties set as true</p>
<p>EnableAutoDragDrop=true;
AllowDrop=true;</p>
<p>What am I missing ??</p>
http://stackoverflow.com/questions/1883190/wpf-or-silverlight-selecting-and-dragging-multiple-thumbs0Wpf (or silverlight) selecting and dragging multiple thumbsjose2009-12-10T18:55:05Z2009-12-10T18:55:05Z
<p>Hello,</p>
<p>I have a CustomPolyLine class which connects several thumbs. th user is able to drag those thumbs. now i need to be able to select and drag the whole structure, by selecting multiple thumbs. how can i do this ?</p>
http://stackoverflow.com/questions/1807177/require-help-to-implement-drag-from-java-application-and-drop-to-native-file-syst2Require help to implement drag from Java Application and drop to Native File SystemAshish Pancholi2009-11-27T06:59:55Z2009-12-10T15:18:48Z
<p>I have a Java Swing application which shows a list of the files/Folders that have been uploaded to the server. I have a requirement to download selected file(s)/folder(s) to native file system using Drag and Drop . I have searched links but almost every link describes the Drag and Drop within a Java Swing application. My requirement is to Drag the file from the Java Swing application and Drop it to the native file system. </p>
<p>I need help to know how I can get the location where user has dropped the selected file(s)/folder(s) to the native file system.</p>
<p>For example, let's suppose the user has dragged the file and dropped directly to the <code>C:\Back_Up</code> folder <em>by restore the window of Java Application</em>. How can I identify the location that user has dropped the file to, i.e. <code>C:\Back_Up</code>?</p>
http://stackoverflow.com/questions/1870124/drag-a-link-into-a-batch-file0Drag a link into a batch fileyoshco2009-12-08T21:56:13Z2009-12-09T23:59:19Z
<p>I like using %1 in my batch files, but dragging a link over from the browser (Chrome) doesn't work.<br>
My batch file is </p>
<pre><code>echo %1
pause
</code></pre>
<p>How can I make it accept dragged links?</p>
http://stackoverflow.com/questions/1875425/want-to-make-a-complex-c-gui-simply0want to make a complex c++ gui simplybuddhi2009-12-09T17:16:44Z2009-12-09T21:57:11Z
<h3>Hi!</h3>
<p><br>
I want to make a nice simple gui using c++. which have drag and drop capabilities, must be light weight. Im thinking of a gui like utorrent client gui.Its light weight and simple.
please give me information about most easy to use libraries / ide /plugin (on windows platform may be good).</p>
http://stackoverflow.com/questions/1867060/mfc-ole-drag-drop-freeing-globally-allocated-memory1MFC/OLE Drag & Drop - freeing Globally allocated memoryJohn2009-12-08T13:43:09Z2009-12-08T18:32:29Z
<p>If using COleDataSource & COleDataObject, you allocate some global memory for each clipboard data format you wish to store data in the drag'n'drop operation. In the drop code, you query if the object has data in the format(s) you want and can then access & free that memory.</p>
<p>But as a drop-target you can't know all the formats that might have data associated by the drag-source. So how can you clear all the memory allocated for the drag for every format?</p>
<p>In fact, am I <em>supposed</em> to manually free this data on the drop, or let MFC/Ole do it automatically?</p>
http://stackoverflow.com/questions/1868454/silverlight-3-toolkit-listboxdragdroptarget0Silverlight 3 Toolkit - ListBoxDragDropTargetTerry Nederveld2009-12-08T17:16:20Z2009-12-08T17:57:19Z
<p>I have two listboxes that I am dragging one item from to the other. Using the November 2009 build of the Silverlight 3 Toolkit's ListBoxDragDropTarget. I have an EventHandler on the Drop event of the second listbox. I am trying to get the index of the item that is being inserted so I can see what comes before it in the item collection. Does anyone know how to get the index of the item to be added on a dropped item? </p>
http://stackoverflow.com/questions/1866859/drag-drop-javascript-sortable-with-moving-marker0Drag & Drop Javascript sortable with moving marker?Pekka2009-12-08T13:06:12Z2009-12-08T13:31:18Z
<p>I am searching through "drag & drop sortable" Javascript libraries such as Prototype's sortable, JQuery's sortable, and a number of standalone ones.</p>
<p>I feature that I can't find (but know it's out there) is, I can't think of a better word, "delayed" sorting so that when I move an item around on the list, <strong>it will not be moved immediately, but a line or other kind of marker will appear showing where the item would end up if I dropped it right now</strong>. This functionality can for example be found in Windows when moving items around in the start menu. </p>
<p>Could anybody point me towards a Javascript solution that can do this? Prototype or standalone would be preferred for the current project, but JQuery is fine as well.</p>
http://stackoverflow.com/questions/1791103/drag-and-drop-accordion-panels-asp-net1Drag-and-drop accordion panels? (ASP.Net)earlz2009-11-24T16:13:15Z2009-12-07T11:05:10Z
<p>Hello, I have a set of accordion panes(dynamically created) contained in an Accordion control. Basically, what I am wanting is for the user to be capable of dragging these accordion panels so that instead of</p>
<pre>
A pane
B pane
C pane
</pre>
<p>They can drag and drop it to be something like</p>
<pre>
B pane
A pane
C pane
</pre>
<p>Or whatever. Also, more importantly, I would need to be able to detect that they have changed the order. Would there be a way to have it when they "drop" the pane that it can update a hidden field or something? I don't need a postback on every single drag and drop, but rather I want for when they hit a save button for the server application to detect the order in which the panes are so that it can save this order.</p>
<p>I would prefer to stay away from javascript libraries, but if it would be the easiest way, then I'll consider it. </p>
http://stackoverflow.com/questions/1344782/problem-using-jquery-ui-droppable-and-livequery0Problem using jquery UI droppable and livequery!Diego2009-08-28T02:46:51Z2009-12-05T23:00:02Z
<p>I have this code for some elements to be dropped</p>
<p>var $tab_items = $("ul:first li",$tabs).droppable{ tolerance: 'touch' ,....</p>
<p>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.</p>
<p>In other similar situation I found a solution using livequery (event delegation), but here it´s imposibble because I don´t want to attach a function, I want to attach the same that on the first line code.</p>
<p>Any solution better than making dropabble after every new object load? </p>
http://stackoverflow.com/questions/1852667/c-dragenter-event-of-the-winforms-dragdrop0C# DragEnter event of the Winforms DragDrop.JMSA2009-12-05T16:38:34Z2009-12-05T22:36:28Z
<p>Why do we actually need to handle DragEnter event of the drop destination?</p>
<p>What is its effect at the destination?</p>
<h2>At Source</h2>
<pre><code>public partial class ToolBoxForm : System.Windows.Forms.Form
{
public ToolBoxForm()
{
InitializeComponent();
}
private void lbl_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
Label lbl = (Label)sender;
lbl.DoDragDrop(lbl.Image, DragDropEffects.Link);
}
}
</code></pre>
<h2>At Destination:</h2>
<pre><code>public partial class DrawingArea : Form
{
public DrawingArea()
{
InitializeComponent();
}
private void DrawingArea_Load(object sender, System.EventArgs e)
{
ToolBoxForm toolBoxForm = new ToolBoxForm();
this.AddOwnedForm(toolBoxForm);
toolBoxForm.Show();
pictureBox1.AllowDrop = true;
}
private void picDrawingArea_DragEnter(object sender, System.Windows.Forms.DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.Bitmap))
{
e.Effect = DragDropEffects.Copy;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void picDrawingArea_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
{
Graphics g = pictureBox1.CreateGraphics();
g.DrawImage((Image)e.Data.GetData(DataFormats.Bitmap), new Point(e.X - this.Left - 12, e.Y - this.Top - 30));
}
}
</code></pre>
<p>When I am commenting out the code:</p>
<pre><code>if (e.Data.GetDataPresent(DataFormats.Bitmap))
{
e.Effect = DragDropEffects.Copy;
}
else
{
e.Effect = DragDropEffects.None;
}
</code></pre>
<p>The image is not being dropped.</p>
http://stackoverflow.com/questions/1586921/flex-how-do-i-prevent-in-drag-and-drop-dragging-onto-self0Flex:: How do I prevent in drag and drop, dragging onto selfDoron Katz2009-10-19T04:16:17Z2009-12-05T01:46:14Z
<p>I have a Flex question. I was wondering, if I have two list boxes, and I want to drag and drop between both of them, how do I prevent the user from dragging onto the same list (thus duplicating the item? I cannot have a situation where that is the case. Thanks guys</p>