active questions tagged droppable - Stack Overflowmost recent 30 from stackoverflow.com2010-03-19T23:41:15Zhttp://stackoverflow.com/feeds/tag/droppablehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2471798/jquery-drag-and-drop-visual-feedback-on-draggable-clone0jQuery - drag-and-drop visual feedback on draggable cloneAndreashttp://stackoverflow.com/users/2966582010-03-18T16:56:23Z2010-03-18T18:32:59Z
<p>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).</p>
<p>Is this possible? Has anyone done this in jQuery?</p>
<p>I've not seen any examples and I'm unclear on how to achieve it. I've tried the over/out events, but that doesn't seem quite right as they seem get called on mouse move.</p>
<p>Any advice, particularly a sketched example, is much appreciated.</p>
http://stackoverflow.com/questions/2463574/scriptaculous-draggable-droppable-script-not-working-properly-when-dragging-into0Scriptaculous Draggable/Droppable script not working properly when dragging into a scrolling divGeorgehttp://stackoverflow.com/users/2500682010-03-17T15:31:55Z2010-03-17T15:31:55Z
<p>I am using the Scriptaculous <a href="http://wiki.github.com/madrobby/scriptaculous/draggable" rel="nofollow">Draggable</a>/Droppable scripts and have a problem when dragging into a scrolling div. I have the following layout (based on <a href="http://stackoverflow.com/questions/2414449/why-isnt-my-div-scrolling-horizontally-when-adding-multiple-images">this question</a>):</p>
<pre><code>#grid-container { left:33px; position:relative; width:300px; }
#grid { width:310px; height:400px; overflow:auto; margin-bottom: 15px; }
#grid-container ul { width:400px; list-style-type:none; white-space: nowrap; }
#grid-container li { display:inline; list-style-type:none; padding:5px 15px 5px 15px; height:88px; text-align:center }
.image-row { margin-left: 10px; }
.grid-image { height:50px; margin-left:-20px; }
</code></pre>
<p>Here is the html:</p>
<pre><code><div id="grid-container">
<div id="grid">
<div id="row1" class="image-row">
<ul>
<li><img id="img1" class="grid-image" src="images/img1.jpg"></li>
<li><img id="img2" class="grid-image" src="images/img2.jpg"></li>
<li><img id="img3" class="grid-image" src="images/img3.jpg"></li>
<li><img id="img4" class="grid-image" src="images/img4.jpg"></li>
</ul>
</div>
<div id="row2" class="image-row">
<ul>
<li><img id="img5" class="grid-image" src="images/img5.jpg"></li>
<li><img id="img6" class="grid-image" src="images/img6.jpg"></li>
</ul>
</div>
</div>
</div>
</code></pre>
<p>I have another div with draggable items, while all of the img elements are droppable. This works very well for most cases, but when there are too many images for the grid and it has to scroll, I run into issues. I can still drag/drop into most items in that div, but when I scroll down and then try to drag onto an item in the bottom of the list, it drops on the row that was at the bottom before I scrolled the div. </p>
<p>Even if I set the scroll attribute when creating the Draggable items, it will scroll the grid div, but not use the proper Droppable item. </p>
<p>Is there any way to make the Draggable items drop onto the proper Droppable element regardless of if the containing div is scrolled or not?</p>
http://stackoverflow.com/questions/2451246/jquery-ui-multiple-drops-problem0jquery ui multiple drops problemCatfishhttp://stackoverflow.com/users/2224032010-03-15T23:40:43Z2010-03-16T17:25:01Z
<p>Hi
I have 2 droppable divs and when a drag is dropped on either one of them, i'm trying to get the id of that drop element. It's always returning the id of the first drop element in the DOM. </p>
<pre><code>$('#albumImgs li').draggable({
containment: '#content',
scrollSensitivity: 60,
revert: 'invalid',
cursor: 'move'
});
$('.dropContainerClosed').droppable({
accept: '#albumImgs li',
activeClass: 'dropContainerOpen',
drop: function(event, ui) {
var file = $(ui.draggable.find('img'));
var fileName = file.attr('alt');
var albumName = $('div.dropContainerClosed').attr('id');
console.log("fileName = "+fileName);
console.log("albumName = "+albumName);//always returns the first div.dropContainerClosed id in the DOM
if(albumName != undefined) {
$.post('addImage.php', {filen: fileName, albumn: albumName},
function(data) {
//do something here
}, 'json');
} else {
$.post('firstImage.php', {filen: fileName, albumn: albumName},
function(data) {
//do something here
}, 'json');
}
}
});
</code></pre>
http://stackoverflow.com/questions/1825061/jquery-droppable-dropping-outside-div1jQuery Droppable: dropping outside div?kasakkahttp://stackoverflow.com/users/2219682009-12-01T09:37:30Z2010-03-15T14:25:46Z
<p>Is there any way I can get jQuery to perform a function when you drag an item outside a droppable DIV? </p>
<p>Let's say that we have draggable or sortable items in a div and you want them deleted if they are dropped outside their parent div.</p>
<p>I know there is the "out" event but that works as soon as you drag the item outside the div, not when you drop it (release mouse button).</p>
http://stackoverflow.com/questions/2419592/problems-with-jquerys-droppable-tolerance-fit-feature-when-using-the-same-size0Problems with JQuery's Droppable Tolerance 'fit' feature when using the same size divsChrishttp://stackoverflow.com/users/2908202010-03-10T18:45:02Z2010-03-10T18:45:02Z
<p>Hi</p>
<p>I'm just wondering if anybody else can manage to get the tolerance:'fit' option to work when using the 'droppable' feature in jQuery's UI?</p>
<p>I want to call a function only when the draggable div is dropped perfectly onto a droppable div. Both divs are the same size and I'm using snapMode:outer to help the end user.</p>
<p>I simply cannot get it to work with 'fit'. Works perfectly with 'intersect'.</p>
<p>Would really appreciate some help.</p>
<p>Thanks
Chris</p>
http://stackoverflow.com/questions/2354683/jquery-ui-droppables-in-overflow-scroll-containers0jQuery UI droppables in overflow scroll containersshaunohttp://stackoverflow.com/users/2834682010-03-01T08:56:36Z2010-03-01T08:56:36Z
<p>Hi</p>
<p>I did ask this question already at the jQuery forums, but they are not as active as here.</p>
<p>I have encountered a problem when I have multiple droppable areas on a page. I have a 'static' droppable area that will never move, above a div that has multiple droppable areas and can scroll (overflow: scroll). When I scroll the div so that one of the droppables in the div is 'under' the static droppable, the drop event is fired for both areas if I drop on the static area.</p>
<p>Sorry, this explanation might be vague, so I put together a sample:</p>
<p>Markup:</p>
<pre><code><div style="float:left; width:300px; height: 300px; border: 1px solid #000;">
<ul class="draggables">
<li>Draggable</li>
<li>Draggable</li>
<li>Draggable</li>
<li>Draggable</li>
<li>Draggable</li>
</ul>
</div>
<div style="float:left; width:300px; height: 300px; border: 1px solid #000;">
<div class="static-droppable" style="width:298px; height:100px; border:1px solid #f00;">Static Drop Area</div>
<div style="width:298px; height:198px; overflow-y:scroll; border:1px solid #0f0;">
<ul class="scroll-droppables">
<li style="border:1px solid #00f; height:60px;">Droppable</li>
<li style="border:1px solid #00f; height:60px;">Droppable</li>
<li style="border:1px solid #00f; height:60px;">Droppable</li>
<li style="border:1px solid #00f; height:60px;">Droppable</li>
</ul>
</div>
</div>
</code></pre>
<p>Javascript:</p>
<pre><code>//create draggables
jQuery('.draggables li').draggable({
revert: 'invalid',
cursor: 'move',
helper: 'clone'
});
//the static droppable area
jQuery('.static-droppable').droppable({
greedy: true,
drop: function(event, ui) {
alert('Dropped on static drop area!');
}
});
//scrolling droppables
Query('.scroll-droppables li').droppable({
drop: function(event, ui) {
alert('Dropped on scrolling drop area!');
}
});
</code></pre>
<p>I did try make the static drop area 'greedy', but that didn't seem to help in the situation.</p>
<p>Any idea on how to stop this happening?</p>
http://stackoverflow.com/questions/2238638/iframe-as-scriptaculous-droppable0iframe as scriptaculous droppableNathanhttp://stackoverflow.com/users/2090952010-02-10T16:51:19Z2010-02-10T16:51:19Z
<p>I have a sortable list and an iframe on the same page. What I'm trying to do is define the as a Droppable. Everything works with out errors but when I try to drag a sortable item across the Iframe it stops at the edge. ( if I move it slowly it seems works in firefox) </p>
<p>The Iframe is set to DesignMode ="on" so covering it with a transparent element to act as the droppable does not seem applicable here. Anyone know of any other solutions or a better way to handle this?</p>
http://stackoverflow.com/questions/2197676/change-dragging-object-and-restore-it-after-dropping-it0Change dragging object and restore it after dropping it.lepehttp://stackoverflow.com/users/1965072010-02-04T06:08:10Z2010-02-04T09:23:09Z
<p>Hi!, please help me, I know in general how to use the draggable and droppable classes, but I can not find a way to achieve this:</p>
<p>I have a large-sized image that I need to drag and drop into a div. </p>
<p>1) while dragging, instead of moving around the large-sized image, I want to use a small-sized image (I already have it, just need to change the src).</p>
<p>2) Once it reaches the target div, I would like to hide that dragged image and show again the large-sized image in its original place.</p>
<p>The only restriction is: "revert: invalid" must apply.</p>
<p>This is my code:</p>
<pre><code>$("#big_img").draggable({
revert: 'invalid',
drag : function(e, ui){
//Change big image with a small version of it
$(this).attr("src").replace("/Large/","/Small/"); //<--this do nothing
}
});
$("#target").droppable({
drop: function(e, ui) {
alert("was added"); //<-- no problem here.
//Restore the big_img
}
});
</code></pre>
<p>Thank you.</p>
http://stackoverflow.com/questions/1543002/jquery-droppable-item-overlap0jquery droppable item overlapbenhttp://stackoverflow.com/users/1707682009-10-09T10:28:31Z2010-02-03T05:00:05Z
<p>i have 1 draggable div and 2 droppable divs. those 2 droppable divs also are draggable. so there might be a chance those 2 divs are overlapped. in that sitchuation when i drag the draggable div and drop to the overlapped divs. is there anyway to make sure it drop on the top one?</p>
http://stackoverflow.com/questions/2128570/multiple-drag-and-drop-in-jquery-event-after-dragging3Multiple drag and drop in JQuery: event after draggingnolomanhttp://stackoverflow.com/users/2579482010-01-24T20:06:47Z2010-01-30T20:01:18Z
<p>Hey everyone,</p>
<p>I am actually trying to make a .php page where I am going to have 3 draggable elements which have to be dragged to 3 droppable elements -each draggable to a droppable, and they are unique, so one each droppable will only accept a certain draggable.</p>
<p>The thing is that I need to control that all of the elements have been dragged to the right spot, in which case I should redirect the user for example to success.php, otherwise, if some of the elements were dragged to the wrong droppable, the user have to go to for example failure.php.</p>
<p>Is there anyway for example to save a certain value in a $_SESSION in PHP in order to know that all the draggables have been dropped in the right place?</p>
<p>This is the code for the drag&drop:</p>
<pre><code>$(function() {
$("#draggableLeiden").draggable();
$("#draggableTheHague").draggable();
$("#draggableRotterdam").draggable();
$("#droppableLeiden").droppable({
accept: '.imgLeiden',
drop: function(event, ui)
{
$(this).addClass('ui-state-highlight');
}
});
$("#droppableTheHague").droppable({
accept: '.imgTheHague',
drop: function(event, ui)
{
$(this).addClass('ui-state-highlight');
}
});
$("#droppableRotterdam").droppable({
accept: '.imgRotterdam',
drop: function()
{
$(this).addClass('ui-state-highlight');
//var activeClass = $(this).droppable('option', 'activeClass','ui-state-highlight');
}
});
});
</code></pre>
<p>I am trying to do this for example getting the active class of the droppable elements to see if it matches 'ui-state-highlight', but actually, that tag is gonna be executed everytime the page reloads, so if I try to insert any code into the<br>
drop: function()
it will always execute.</p>
<p>Thanks a lot in advance!</p>
http://stackoverflow.com/questions/2166339/applying-jquery-ui-droppable-on-nested-lists2Applying jquery-ui droppable on nested lists.Gazlerhttp://stackoverflow.com/users/2197432010-01-30T00:55:50Z2010-01-30T02:58:16Z
<p>Hi there,</p>
<p>I am trying to use jquery droppable on a nested list, applying a change to the background colour of the li on hover. The problem is that it is only applying to the first item in a list. The alert is still alerting the text within the list item though. Any ideas why this would be happening?</p>
<pre><code> $("#mailbox li").droppable({
greedy: true,
hoverClass: 'mailbox-hover',
drop: function(event, ui) {
alert($(this).text());
}
});
</code></pre>
<p>[<strong>Edit</strong>]
On some testing, the alert is working right, the hover class is being applied (according to fireBug) but it will only change the text-color when I hover over the first element.</p>
<pre><code><ul id="mailbox" class="filetree">
<li>
<span class="folder">imap@gazler.com
</span>
<ul>
<li id="0-INBOX">
<span class="folder">
</span>
<a href="#" onclick="changeFolder('0', 'INBOX', 'INBOX');" name="INBOX">INBOX
</a>
<ul>
<li id="0-INBOX-Drafts">
<span class="file">
</span>
<a href="#" onclick="changeFolder('0', 'INBOX.Drafts', 'Drafts');" name="INBOX.Drafts">Drafts
</a>
<li id="0-INBOX-Sent">
<span class="file">
</span>
<a href="#" onclick="changeFolder('0', 'INBOX.Sent', 'Sent');" name="INBOX.Sent">Sent
</a>
<li id="0-INBOX-Trash">
<span class="folder">
</span>
<a href="#" onclick="changeFolder('0', 'INBOX.Trash', 'Trash');" name="INBOX.Trash">Trash
</a>
<ul>
<li id="0-INBOX-Trash-New">
<span class="file">
</span>
<a href="#" onclick="changeFolder('0', 'INBOX.Trash.New', 'New');" name="INBOX.Trash.New">New
</a>
</ul>
</ul>
</ul>
</li>
</code></pre>
<p></p>
<p>[<strong>css is comments</strong>] - Also, possibly related, possibly a css error, it won't let me set the background-color of the li on hover, only font color.</p>
<pre><code>.mailbox-hover
{
background-color: #0000ff;
}
.mailbox-dropped
{
color: #ffff00;
}
</code></pre>
<p>[<strong>solved</strong>] - And finally, it won't let me alert ($(this).id) even though the all the list items have an id attached.</p>
http://stackoverflow.com/questions/2151434/jquery-droppable-hover-and-active-class-take-precedence1jQuery Droppable Hover and Active Class take Precedence?Colinhttp://stackoverflow.com/users/1148552010-01-28T00:25:23Z2010-01-28T00:35:24Z
<p>I'm having an issue where I see my active and hover class being applied in Firebug, but it's not taking precedence over the existing styles.</p>
<p>So, if my element has background-color set, the active and hover background color don't change the element.</p>
<p>How can I fix this behavior?</p>
http://stackoverflow.com/questions/2090121/jquery-sortable-and-droppable1jQuery Sortable and DroppableColinhttp://stackoverflow.com/users/1148552010-01-19T00:04:54Z2010-01-25T15:14:09Z
<p>I want to have a list that is sortable, but I also want the elements in that list to be droppable to the divs I have defined as droppable. I can't seem to find a way to do it. Any ideas?</p>
http://stackoverflow.com/questions/1292176/how-do-i-prevent-multiple-jquery-ui-droppables-from-being-triggered0How do I prevent multiple jQuery UI droppables from being triggered?bryanhttp://stackoverflow.com/users/730492009-08-18T06:41:20Z2010-01-23T08:00:04Z
<p>I have a <a href="http://jqueryui.com/demos/draggable/" rel="nofollow">jQuery UI draggable</a> and several separately-defined <a href="http://jqueryui.com/demos/droppable/" rel="nofollow">droppables</a>. Because one of the droppables is configured <code>tolerance: 'intersect'</code>, it's possible for a draggable to be dropped on more than one kind of droppable at the same time.</p>
<p>What's the best way to prevent the unintended droppables from firing? Basically, I'd like to prioritize the droppables so that the droppables with <code>tolerance: 'intersect'</code> don't get triggered if another droppable was triggered.</p>
<p><strong>Update</strong> - More info to clarify things:</p>
<ul>
<li><p>All of the droppables are configured <code>tolerance: 'pointer'</code> except for one class of droppable with <code>tolerance: 'intersect'</code>.</p></li>
<li><p>The reason one class of droppable has <code>tolerance: 'intersect'</code> is that the droppables are really narrow, and users have problems finding them with <code>tolerance: 'pointer'</code>.</p></li>
<li><p>Moving the droppables further apart isn't an option.</p></li>
<li><p>None of the droppables overlap, but the draggable is large enough to overlap a droppable with <code>tolerance: 'intersect'</code> while the mouse pointer is over another droppable with <code>tolerance: 'pointer'</code>. At most two droppables can be triggered at once in this way.</p></li>
<li><p>The UI is laid out so the user's intentions can be determined by ignoring the <code>tolerance: 'intersect'</code> droppable if another droppable has been triggered; i.e. if the user moved the mouse pointer over a droppable with <code>tolerance: 'pointer'</code>, it's safe to assume that he/she intended to drop it there. Problem is, I can't figure out how to ignore the unwanted droppable.</p></li>
</ul>
http://stackoverflow.com/questions/2106006/jquery-droppable-accept-where-not-parent0jquery droppable accept where not parentpedalpetehttp://stackoverflow.com/users/480672010-01-21T00:06:45Z2010-01-21T00:10:02Z
<p>I'm trying to figure out how to write a statement which will stop the jQuery droppable function if the the dragged element is the parent.</p>
<p>Basically what I have is a table, and each cell has the id of x-axis:eq+'-'+y-axis:eq. (x over-x-down).
When the user drags an element to a different cell, I update the info, so if you drag from cell 3-3 to 3-4, I update the data. </p>
<p>However, if the user starts dragging from 3-3, and then stops dragging still within the 3-3 cell, I want to prevent the droppable function from firing. </p>
<p>I've been looking at using the 'accept' function, but can't figure out how to say !jQuery('td#3-3')</p>
<p>Here's what I've got</p>
<pre>
jQuery('div','table').draggable({axis:'y', containment: 'table'});
var cellId=jQuery(this).parents('td').attr('id');
jQuery('td','table').droppable({
accept : !jQuery('td#'+cellId),
drop: function(){
jQuery.ajax({ update stuff in db});
}
});
</pre>
http://stackoverflow.com/questions/2087577/jquery-drag-drop-and-drag-again0jQuery drag & drop and drag again...WastedSpacehttp://stackoverflow.com/users/2533492010-01-18T16:37:42Z2010-01-20T16:45:17Z
<p>Hi there,</p>
<p>I'm working on a drag & drop page where you can drag elements from a list into various droppable containers. This works perfectly. What I am now trying to achieve is then have the ability to drag these from one container to another (or re-order them inside a container). But I cannot seem to do this.</p>
<p>The list looks like a succession of coloured boxes with titles (each has a class name of '.item'). When you drag from the list it clones it, so that the list stays the same (ie. blocks are not removed). </p>
<p>There are two containers (in this example), with class names of 'dragrow1' and 'dragrow2'. Depending on which row you drag your box into, the block will change appearance. This works as it should. The trouble is getting these boxes to drag again, either inside its own container or another one, and without cloning itself (it needs to move). By the way, the class name changes from '.item' to '.box' after dropping for style reasons. What's nice is as you drag a coloured box into a container, because of the css style applied, each box floats next to each other, so they lay side by side from the top left corner. </p>
<p>My jquery code so far looks like this:</p>
<pre><code>$(document).ready(function(){
$(".items").draggable({helper: 'clone'});
$(".dragrow1").droppable({
accept: ".items, .box",
hoverClass: 'dragrowhover',
tolerance: 'pointer',
drop: function(ev, ui) {
var dropElemId = ui.draggable.attr("id");
var dropElemTitle = ui.draggable.attr("title");
$(this).append('<div class="box" id="'+dropElemId+'row1">'+dropElemTitle+' - some extra box content here</div>');
$('div.box a').click(function(){$('#'+dropElemId+'row1').remove()});
}
});
$(".dragrow2").droppable({
accept: ".items, .box",
hoverClass: 'dragrowhover',
tolerance: 'pointer',
drop: function(ev, ui) {
var dropElemId = ui.draggable.attr("id");
var dropElemTitle = ui.draggable.attr("title");
$(this).append('<div class="box" id="'+dropElemId+'row2">'+dropElemTitle+' - different content here</div>');
$('div.box a').click(function(){$('#'+dropElemId+'row2').remove()});
}
});
});
</code></pre>
<p>And an example of the container code looks like this:</p>
<pre><code><div class="dragbox-content" style="display:block" >
<div class="dragrow1">&nbsp;</div>
<div class="dragrow2">&nbsp;</div>
</div>
</code></pre>
<p>Can anyone give me any pointers?</p>
<p>Thanks,</p>
<p>Ali.</p>
http://stackoverflow.com/questions/1491742/jquery-ui-droppable-background0jQuery UI: droppable background?kasakkahttp://stackoverflow.com/users/1810412009-09-29T10:29:19Z2010-01-09T08:00:04Z
<p>I'm trying create a trashcan where after you've put some items there, you could simply open it and drag any trashed item out of it by dropping it outside the trashcan.</p>
<p>The way I've set this, is my web app has a trashcan icon where I drop the items and clicking the trashcan opens a box with the trashed items and fades in a black transparent background that obscures everything else so you just focus on the trashcan box.</p>
<p>The code is essentially</p>
<pre><code><div id="background"></div>
<div id="trashcanContainer">
<ul id="items">
<li>item1</li>
<li>item2</li>
</ul>
</div>
</code></pre>
<p>The background CSS is set to fixed position and 100% width and height and it is set as a droppable. The problem is that when I drag something from the trashcan and drop it on the background, it gets removed even if I drop it on top of the trashcan. Basically jQuery somehow doesn't understand that the trashcanContainer div is on top of the background div (and thus not part of the droppable) even if I define a z-index higher than the background.</p>
<p>Is there any way I can make this work?</p>
http://stackoverflow.com/questions/2025868/jquery-cookie-with-igoogle-netvibes-ui0jQuery Cookie with 'iGoogle/Netvibes' UIJon Phillipshttp://stackoverflow.com/users/2461692010-01-08T06:20:21Z2010-01-08T06:20:21Z
<p>Hi, I have this single-page site that has 4 columns with draggable/droppable/collapsible boxes. I can drag and drop boxes in any of the 4 columns and collapse/expand the boxes. The interface actually works real fine. I'm now trying to get jQuery Cookie to remember the placement of the boxes, how the users have rearranged the boxes and if boxes were collapsed or expanded.</p>
<p>Here's the jQuery:</p>
<pre><code>$(function(){
$('.dragbox')
.each(function(){
$(this).hover(function(){
$(this).find('.dragbox');
}, function(){
$(this).find('.dragbox');
})
.find('h2').hover(function(){
})
.click(function(){
$(this).siblings('.dragbox-content').toggle();
})
.end()
});
$('.column').sortable({
connectWith: '.column',
handle: 'h2',
cursor: 'move',
placeholder: 'placeholder',
forcePlaceholderSize: true,
opacity: 0.4,
stop: function(event, ui){
$(ui.item).find('h2').click();
var sortorder='';
$('.column').each(function(){
var itemorder=$(this).sortable('toArray');
var columnId=$(this).attr('id');
sortorder+=columnId+'='+itemorder.toString()+'&';
});
}
})
.disableSelection();
});
</code></pre>
<p>How would you modify this in order to save/edit cookies and have the boxes displayed the same when the user visits again or refreshes the page?</p>
<p>Thanks a lot!
Jon</p>
http://stackoverflow.com/questions/1934446/jquery-tab-order-kills-drag-drop-sort-lists0jQuery tab order kills drag/drop/sort listsEdgarshttp://stackoverflow.com/users/2353092009-12-19T23:23:44Z2009-12-20T19:02:56Z
<p>Hi everyone!</p>
<p>I am stuck in a problem with jQuery. I try to make a list from elements, that can be dragged and dropped in many lists. But this whole thing is inside a tab. Here is it shown as it supposed to work:</p>
<p><a href="http://redbird.lv/problem/jquery%5Fdoeswork.html" rel="nofollow">http://redbird.lv/problem/jquery_doeswork.html</a> </p>
<p>The interesting thing starts if I try to change the order of tabs. If the tab is not the first opened, than it's not working until there is a element in the lists you can drop in and move it (awake?). Here is my problem example:</p>
<p>As I cannot post more than 1 link, this not working link is VERY visible in the working example.</p>
<p>Any suggestions how to solve this problem? I think, the sortables must be .('refresh'); on tab open, but</p>
<pre><code>$('#tabcontainer').bind('tabsselect', function(event, ui) {
$('.sortable_boxes').sortable('refresh');
});
</code></pre>
<p>is not doing the job. So I am out of guesses. Will appreciate any help!
Thanks!
Edgars</p>
http://stackoverflow.com/questions/1914372/jquery-drag-and-drop1Jquery drag and dropSajeevhttp://stackoverflow.com/users/2329112009-12-16T12:26:41Z2009-12-16T14:12:59Z
<p>Hi I am new to jQuery and trying work on a proof of concept. I have posted the example code here and my requirement is as follows.</p>
<p>I have 2 droppables dog/sheep and I want to drop them on the shirt.</p>
<p>I drop the sheep/dog on the shirt but as soon as drop it goes to the down-left position of the div.</p>
<p>I tried doing <code>$('[id$="apparel"]').append(dropElem);</code> instead of <code>$(this).append(dropElem);</code></p>
<p>Can some one please help me in this?</p>
<p>Appreciate your time.</p>
<p>thanks
John</p>
<p>this is my javascript</p>
<pre><code>$(".items").draggable({helper: 'clone'});
$(".droparea").droppable({
accept: ".items",
hoverClass: 'dropareahover',
tolerance: 'touch',
drop: function(ev, ui) {
var dropElemId = ui.draggable.attr("id");
var dropElem = ui.draggable.html();
$(this).append(dropElem);
alert("drop done");
}
});
</code></pre>
<p>And the HTML</p>
<pre><code><div class="wrap">
<div class="sourcearea">
<span class="items" id="itemsheep">
<img src="sheep.jpg" width="100">
</span>
<span class="items" id="itemdog">
<img src="dog.jpg" width="100">
</span>
</div>
<div class ="droparea">
<img src="RedShirt.jpg" width="300" height="300" id="apparel">
</div>
</div>
</code></pre>
http://stackoverflow.com/questions/1086052/jqueryui-droppable-drop-function-firing-on-over-only-if-i-have-on-my-draggab0jqueryUI droppable "drop" function firing on "over" only if i have on my draggable a "connectToSortable" option setBubi Blomerhttp://stackoverflow.com/users/02009-07-06T08:46:49Z2009-12-13T13:00:01Z
<p>Hello guys hope anybody can help me with this little bug.</p>
<p>You can see the code on <a href="http://designvictim.com/jqueryui/index.html" rel="nofollow">http://designvictim.com/jqueryui/index.html</a></p>
<p>Now here is my problem:</p>
<p>I'm trying to make something similar to the widget drag and drop from
Wordpress.</p>
<p>I've gotten pretty close to what we wanted to accomplish but we wanted
to be able to when you drag a item out of the "Drop Area's" and drop
it outside then it would erase itself and send of course an Ajax call
with the updated contents. That is why i made the #body droppable.
Also if you start a drag from the Module Column to one of the drop
areas i wanted it to be sortable directly before dropping it and i was
able to accomplish this with "connectToSortable: '.moduleContainer' "
but now every time i start with an item from the module container and
start dragging and hover one of the drop areas and continue to another
one, the drop function of the $('#body').droppable() fires which
boggles my mind!</p>
<p>I hope its some clumsy coding of mine and not a bug of jqueryUI.
Thanks in advance for any help and i hope i made myself clear on the
problem.</p>
<p>Bubi Blomer</p>
http://stackoverflow.com/questions/1827385/how-to-create-dynamic-droppables-jquery-php-ajax0how to create dynamic droppables? jQuery + PHP + AJAXmlebrun15http://stackoverflow.com/users/1519282009-12-01T16:38:39Z2009-12-01T16:38:39Z
<p>I'm trying to create jQuery droppables based on a certain class. however, since there are many droppables they should only be created once something has started dragging. is there a way to create droppables based on the if the draggable has a certain class?</p>
http://stackoverflow.com/questions/1820988/droppables-not-being-created-on-drag-start0droppables not being created on drag startmlebrun15http://stackoverflow.com/users/1519282009-11-30T16:51:28Z2009-11-30T17:36:15Z
<p>trying to create my droppables based on the object being dragged. the drag works fine, but the droppables are not being created. there also aren't any errors in the error console. any help?</p>
<p>JS:</p>
<pre><code>$("#theSchedule, #theExtras").live('mouseover', function () {
$(".curSelected").draggable({
helper: 'clone',
opacity: 0.50,
appendTo: 'body',
zIndex: 4,
addClasses: false,
start: createDrops,
stop: tooltip
});
}).live('mouseout', function (e) {
$(".curSelected").draggable('destroy');
});
function createDrops(ev, ui){
disableTip();
if($(ui.helper).hasClass("even")){
$(".even, .evenExtra").droppable({
accept: ".curSelected",
addClasses: false,
hoverClass: 'dropHover',
drop: moveJob
});
} else {
$(".odd, .oddExtra").droppable({
accept: ".curSelected",
addClasses: false,
hoverClass: 'dropHover',
drop: moveJob
});
}
}
function tooltip() {
xOffset = 60;
yOffset = 50;
$("a.tooltip").live('mouseover', createTip).live('mouseout', killTip);
$("a.tooltip").live('mousemove', function (e) {
$("#tooltip").css("top", (e.pageY - xOffset) + "px").css("left", (e.pageX + yOffset) + "px");
});
};
function disableTip() {
$("a.tooltip").die('mouseover', createTip).die('mouseout', killTip);
$("#tooltip").remove();
}
function moveJob(eventt, ui) {
var job = ($(ui.draggable).attr("id"));
var spot = ($(this).attr("id"));
//alert(job+', '+spot);
$.ajax({
type: "GET",
data: "func=moveJob&jobNum=" + job + "&move=" + spot,
url: "../resources/classes/controller_TEST.php",
error: moveJobError,
complete: moveJobCallback
});
}
function moveJobCallback(response) {
//alert(response.responseText);
getSchedule();
}
</code></pre>
<p>sample draggable element HTML:</p>
<pre><code><div id="36636" class="even dragMe curSelected">
<a class="tooltip" href="print.php?id=36636&which=1" title="Notes: $149 ACT + EFT requiredBoard: see notes" target="_blank" style="z-index: 2;">
Ricky Desimone
Hope Valley, RI
see notes
</a>
</div>
</code></pre>
<p>sample droppable element HTML:</p>
<pre><code><div id="2+9-1+2009-11-30" class="even"/>
</code></pre>
http://stackoverflow.com/questions/1796664/jquery-draggable-droppable-compatibility-issue-with-firefox-and-ie0jQuery draggable droppable compatibility issue with firefox and ieKamalhttp://stackoverflow.com/users/1287562009-11-25T12:38:41Z2009-11-25T17:07:50Z
<p>Hi,</p>
<p>ok bear with me, this is one of those long ones. </p>
<p>I have a table of values which stores ID and Field. </p>
<pre><code><asp:DataGrid runat="server" ID="dgFields" AutoGenerateColumns="false">
<Columns>
<asp:BoundColumn DataField="ID" Visible="true" HeaderText="ID"></asp:BoundColumn>
<asp:BoundColumn ItemStyle-CssClass="draggable" DataField="Name" HeaderText="Field">
</asp:BoundColumn>
</Columns>
</asp:DataGrid>
</code></pre>
<p>This binds correctly and the data is sitting in the table correctly. note that only the Field bound column is "draggable". also note that the dragging works fine.</p>
<p>now i have a textbox that i want to be able to drag and drop values from the table to.
nice and simple -</p>
<pre><code><asp:TextBox ID="txtNode" runat="server" class="droppable"></asp:TextBox>
</code></pre>
<p>now the fun part :)</p>
<pre><code>$j(".draggable").draggable({ helper: 'clone', opacity: 0.7, cursor: 'move' });
</code></pre>
<p>this works fine. </p>
<p>now the trick. remember the id and field. i want to drag the field but i want the ID to be added to the textbox. got this working fine. testing in IE. however today i opened it in firefox and imagine my complete horror when "undefined" started appearing in my textbox.</p>
<p>just for speed sake (aka to get it to work NOW), i changed my droppable and it now looks as follows:</p>
<pre><code>$j(".droppable").droppable({
accept: '.draggable',
activeClass: 'ui-state-hover',
hoverClass: 'ui-state-active',
drop: function(event, ui) {
var tbox = document.getElementById('txtNode');
//IE works with the following code
var id = ui.draggable[0].previousSibling.innerText;
//returns null for FIREFOX
if (id == null) {
//FIREFOX works with this
id = ui.draggable[0].previousElementSibling.innerHTML
}
tbox.value = tbox.value + '{' + id + '}';
}
});
</code></pre>
<p>note. the 'tbox.value = ...' bit is because i want to build a string built up of all the ids dragged to the textbox. i need to get the sibling because for user experience, i want them to drag the user friendly field name and NOT the id (because the id doesn't make sense to the user - the only reason it's visible is so that the user can map an id in the textbox to a word once he has dragged it). just for further background, the id string will then be saved to an xml file and is used for configuration and some other magical stuff :)</p>
<p>so now the questions</p>
<ol>
<li>is this a known bug or am i doing something completely wrong?</li>
<li>if it is an issue, is this the best way or is there a better way to fix it?</li>
</ol>
<p>again please note - all the code here WORKS. this is a best approach method to what i currently have - which is admittedly a workaround.</p>
http://stackoverflow.com/questions/1788477/drag-drop-performance-issue-inside-table-date-which-is-built-dynamically-using0Drag & Drop performance issue inside Table date which is built dynamically using ASPSathish JShttp://stackoverflow.com/users/2176112009-11-24T07:40:19Z2009-11-24T07:40:19Z
<p>How to achieve droppable events on mouseover of each items instead of binding it to all events at beginning. If you can provide with an example code will be great. I googled but there is no hope or solution for the same.</p>
http://stackoverflow.com/questions/1751549/jquery-sortabledroppable-vs-draggable-special-functionality0jQuery Sortable+Droppable vs Draggable special functionalityDevon Phttp://stackoverflow.com/users/2132392009-11-17T20:29:18Z2009-11-18T01:47:34Z
<p>Hello - I'm trying to make a functionality that allows for a draggable list of items (left column) to be dragged onto a sortable list (right column). What is different about just doing a connectToSortable is that I need the sortable list to ACT like a droppable list, in that the order of the items is retained on the right column ONLY when dragging new items but NOT when re-arranging the order between items already in the right column. </p>
<p>The link below shows the first part of that functionality. I can drag items to the section I desire. I want to also be able to re-arrange those items once placed in the right column. Additionally, I want to add a class while dragging, and change a class of a <p> element once dropped. I have experimented endlessly with all of this. I'm about 15 hours deep so far and I'm hitting brick walls everywhere. I don't even know how to approach these problems.</p>
<p><a href="http://www.muchomungo.com/CrowdTwist/pages/artist_center/point_scales_v2.html" rel="nofollow">Link</a></p>
<p>I want to copy from here:</p>
<pre><code><div id="lc">
<div class="block"><img src="../../resources/skins/crowdtwist.com/images/artist_center/pscales_merch.jpg" alt="Merchandise" /></div></li>
<div class="block"><img src="../../resources/skins/crowdtwist.com/images/artist_center/pscales_facebook.jpg" alt="Facebook" /></div></li>
<div class="block"><img src="../../resources/skins/crowdtwist.com/images/artist_center/pscales_tickets.jpg" alt="Tickets" /></div></li>
<div class="block"><img src="../../resources/skins/crowdtwist.com/images/artist_center/pscales_artistsite.jpg" alt="Artist Site" /></div></li>
<div class="block"><img src="../../resources/skins/crowdtwist.com/images/artist_center/pscales_myspace.jpg" alt="Myspace" /></div></li>
<div class="block"><img src="../../resources/skins/crowdtwist.com/images/artist_center/pscales_twitter.jpg" alt="Twitter" /></div></li>
<div class="block"><img src="../../resources/skins/crowdtwist.com/images/artist_center/pscales_music.jpg" alt="Music" /></div></li>
</div>
</code></pre>
<p>into:</p>
<pre><code><div id="rc">
<ul id="right_col" class="ib-fix demo-ul"><!--
--><li><div class="right_block" id="right_block_1"><p class="empty">1</p></div></li><!--
--><li><div class="right_block" id="right_block_2"><p class="empty">2</p></div></li><!--
--><li><div class="right_block" id="right_block_3"><p class="empty">3</p></div></li><!--
--><li><div class="right_block" id="right_block_4"><p class="empty">4</p></div></li><!--
--><li><div class="right_block" id="right_block_5"><p class="empty">5</p></div></li><!--
--><li><div class="right_block" id="right_block_6"><p class="empty">6</p></div></li><!--
--><li><div class="right_block" id="right_block_7"><p class="empty">7</p></div></li><!--
--></ul>
</div>
</code></pre>
<p>And here's the JS</p>
<pre><code>$(document).ready(
function()
{
/* $("#right_col > li").droppable({
activeClass: '.beingDragged'
});*/
$(".block").draggable({
snap: '#right_col > li',
snapMode: 'inner',
snapTolerance: '30',
connectToSortable:'#right_col',
start: function(event, ui) { $(ui.item).addClass('beingDragged'); },
stop: function(event, ui) { $(ui.item).removeClass('beingDragged'); }
});
$('#right_col').sortable({
});
}
</code></pre>
<p>);</p>
<p>Any help is appreciated!! Thank you!</p>
http://stackoverflow.com/questions/1723969/jquery-drag-drop-how-to-reset-to-original-state0JQuery Drag Drop - How to Reset to Original StateMega Matthttp://stackoverflow.com/users/2091132009-11-12T17:28:36Z2009-11-12T17:28:36Z
<p>Hi,</p>
<p>I've got a Drag Drop opening in a modal dialog window and would like to reset it back to its original load state if the user cancels out of the dialog. I'm using similar concepts to the 'Simple Photo Manager' Droppable example on jqueryui.com. The problem is that when I drag from one area and drop to another, I'm modifying the html, and so when I close the dialog box and re-open (even if I've destroyed), it's still the way it was.</p>
<p>So is there a way just to reset what I've dropped back to the drag list without manually traversing the drop list and re-assigning to drag? I also know that re-initializing the .draggable() and .droppable() may also work, but I thought there might be an easier way.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1718547/jquery-draggable-scroll-not-working-when-helper-clone-is-used0JQuery draggable: scroll not working when helper: clone is usedChris Williamshttp://stackoverflow.com/users/265352009-11-11T22:32:38Z2009-11-12T01:54:10Z
<p>I have a folder list type of situation where I can drag items from one folder to another using jquery draggable/droppable. Folder items are draggable and folders are droppable. These are in a div that is small enough to show a vertical scroll bar.</p>
<p>I have "scroll: true" set on the draggable items so that they can cause the div to scroll. When I also use 'helper: "clone"' on the draggable items, the scrolling no longer works.</p>
<p>What am I doing wrong?</p>
<p>Here's some very simplified code:</p>
<pre><code><div style="background-color: red; width: 500px; height: 100px; overflow: auto;">
<table id="nfTable" class="treeTable">
<tr><td><span class="parent initialized expanded">drop here</span></td></tr>
<tr><td><span class="draggable">drag me</span></td></tr>
<tr><td><span class="draggable">drag me</span></td></tr>
<tr><td><span class="draggable">drag me</span></td></tr>
<tr><td><span class="droppable">drop here</span></td></tr>
<tr><td><span class="droppable">drop here</span></td></tr>
<tr><td><span class="draggable">drag me</span></td></tr>
<tr><td><span class="draggable">drag me</span></td></tr>
<tr><td><span class="draggable">drag me</span></td></tr>
<tr><td><span class="draggable">drag me</span></td></tr>
<tr><td><span class="droppable">drop here</span></td></tr>
<tr><td><span class="droppable">drop here</span></td></tr>
<tr><td><span class="droppable">drop here</span></td></tr>
<tr><td><span class="droppable">drop here</span></td></tr>
</table>
</div>
<script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script>
// draggable and droppable in here:
<script type="text/javascript" src="/js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript">
$(function() {
$(".draggable").draggable({
// commenting the line below will make scrolling while dragging work
helper: "clone",
scroll: true,
revert: "invalid"
});
$(".droppable").droppable({
accept: ".draggable",
drop: function(e, ui) {
// todo
}
});
});
</script>
</code></pre>
http://stackoverflow.com/questions/1646492/jquery-ui-drag-drop-getting-position-from-multiple-draggables0jquery ui drag/drop getting position from multiple draggablesuser199229http://stackoverflow.com/users/1992292009-10-29T20:53:45Z2009-10-29T20:59:38Z
<p>I have a droppable container with >1 draggables in it. I want to simply be able to see the position of each draggable every time any one of them is dragged. Sounds easy, but I'm having a tough time figuring it out. Here's what I have:</p>
<pre><code><script type="text/javascript">
$(function() {
$("#draggable").draggable({ containment: '#droppable' });
$("#draggable2").draggable({ containment: '#droppable' });
$("#droppable").droppable({
drop: function(event, ui) {
document.getElementById('position1').value = ui.position.top + ', ' + ui.position.left;
}
});
});
</script>
</code></pre>
<p>Basically, where I have the position1 input id gathering the position, I want to have a second line do the same thing for the other draggable.</p>
http://stackoverflow.com/questions/1240730/jquery-multiple-sortables-droppable-revert-issue0jquery Multiple Sortables/droppable Revert IssueDoug Boudehttp://stackoverflow.com/users/1519922009-08-06T18:58:58Z2009-10-22T14:00:03Z
<p><strong>The Scenario:</strong>
I have a single page that has three sortables on it (arranged
horizontally relative to one another), all connected via the
"connectWith" option. Between the three of them, I can sort, drag and
drop...no problems. I added a droppable on the bottom left of the page
so that the user can drop an item from any of the three lists onto it,
some action is performed (in this case, a search based on the dropped
item), and the dropped item should then revert back to its place of
origin.</p>
<p>LIST A LIST B LIST C</p>
<p>[droppable here]</p>
<p><strong>The Issue:</strong>
If I drag an item from list C to the droppable, and I have crossed
over any of the other div containers for list A or B, the item reverts
back to the last list that was crossed over instead of its list of
origin! My list divs are of a fixed height and scrollable, so although
the scrollable area ends above the droppable, the actual height
extends down to it.</p>
<p>Any ideas??? Somehow I need to make it so that an item does not become
part of a list until the user actually lets it go on top of the target
list. it is currently behaving such that an item becomes part of the
list as soon as it crosses over the list's border.</p>
<p>Thanks so much in advance for any input/assistance you can give me.
I've run out of things to try, and that's never a good feeling.</p>
<p>screenshot: <a href="http://www.dougboude.com/images/jqueryissue.gif" rel="nofollow">www.dougboude.com/images/jqueryissue.gif</a></p>
<p>html and js:</p>
<pre><code><table width="50%" border="1">
<tr>
<td valign="top">
<div class="wrapper connectedSortable" id="tlwrapper" style="height:425px;width=350px;overflow-y:scroll;">
<div class="p"><img class="grabme" src="../images/grippy.gif" style="cursor:move;"/>John Smith</div>
</div>
</td>
<td valign="top">
<div class="wrapper connectedSortable" id="tmwrapper" style="height:425px;width=350px;overflow-y:scroll;">
<div class="p"><img class="grabme" src="../images/grippy.gif" style="cursor:move;"/>Lucy Lu</div>
<div class="p"><img class="grabme" src="../images/grippy.gif" style="cursor:move;"/>Johny McJohnerson <img src="../images/icon_person_un.gif" />&nbsp;<a href="#" ><img style="border:none;" src="../images/icon_information.gif" /></a></div>
</div>
</td>
<td valign="top">
<div class="wrapper connectedSortable" id="apwrapper" style="height:425px;width=350px;overflow-y:scroll;">
<div class="p"><img class="grabme" src="../images/grippy.gif" style="cursor:move;"/>Johny Cake</div>
<div class="p"><img class="grabme" src="../images/grippy.gif" style="cursor:move;"/>Tim Barnhill</div>
</div>
</td>
</tr>
<tr>
<td>
Adjuster:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<div id="adjtarget" class="connectedSortable"><img src="../images/target.gif" align="absmiddle" /></div> <---- <span style="font-size:11px;color:black;font-style:italic;">(drop an adjuster here...)</span>
</td>
<td> </td>
<td> </td>
</tr>
</table>
<script>
$(document).ready(function(){
$("#tmwrapper, #apwrapper, #tlwrapper").sortable({
tolerance: 'fit',
handle: '.grabme',
connectWith: $('.connectedSortable'),
items: '.p',
helper: 'clone',
revert: 'valid',
receive: function(ev,ui){alert('receiving!');
//var droppedPerson = ui.item.html();
//change class to match target area
//append to target
},
update: function(ev,ui){
alert('updating!');
}
}).disableSelection();
$("#adjtarget").droppable({
activeClass:'.targethighlight',
drop:function(ev,ui){
alert('dropped');
}
});
});
</script>
</code></pre>