Tagged Questions
The droppable tag has no wiki summary.
15
votes
4answers
5k views
grouping draggable objects with jquery-ui draggable
I want to use jquery draggable/droppable to let the user select a group of objects (each one has a checkbox in the corner) and then drag all the selected objects as a group...
I can't figure out for ...
9
votes
6answers
7k views
jQuery Sortable and Droppable
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?
7
votes
3answers
835 views
jQuery droppable - receiving events during drag over (not just on initial drag over)
I am using jQuery droppable (in conjunction with jQuery draggable) to allow the user to add rows to an HTML table by dragging items from a list and dropping them on the table.
This works well, ...
7
votes
6answers
14k views
jQuery draggable + droppable: how to snap dropped element to dropped-on element
I have my screen divided into two DIVs. In the left DIV I have a few 50x50 pixel DIVs, in the right DIV I have an empty grid made of 80x80 LIs. The DIVs on the left are draggable, and once dropped on ...
6
votes
1answer
2k views
jQuery Droppable, get the element dropped
A small question hopefully with a simple answer, I am using jQuery draggable and droppable to place items into a dock. Using the below code for the drop.
$("#dock").droppable({
drop: ...
6
votes
7answers
5k views
jquery droppable accept
Can anyone tell me how can i write a function in accept condition and then how does it finds out that what to accept and what not to accept.
Fo r eg i want to accept div a and div b in accept ...
5
votes
1answer
161 views
How can I drop an image to a container and then update the container based on what was dropped to it?
I'd like to be able to drag an image into one of two containers (container 1 and container 2). From there, depending on which container the image was dropped to, I'd like to update that container with ...
5
votes
2answers
890 views
How do I trigger the Drop event with jQuery UI Droppable without actually dragging and dropping?
I have a droppable with a drop event handler:
$(this).droppable({
drop:function(){
console.log('OMG You Dropped It!');
}
});
I have a draggable:
$(this).draggable();
What I want to do is ...
4
votes
2answers
626 views
jQuery UI, Draggable, Droppable, Auto Scroll
I have a set of droppable li elements that accepts a draggable icon. The list of items is in a scrollable div element. I put together a simple example here: http://www.nerdydork.com/demos/dragscroll/
...
4
votes
1answer
1k views
Selectable & Draggable jQuery to make a Windows Explorer-like window
I'm now facing another thing that I can't figure out how to do.
I'm new to jQuery and I'm trying to make an icon draggable and when you drop it in the folder(.folder div) It will be moved there.
...
3
votes
1answer
36 views
jQuery droppable bind function on element drop?
How can I bind a function on the drop event, but outside of the droppable() function?
$('#list').droppable({
// ...
drop: function(e,ui) {
// this works...
},
});
// ..but ...
3
votes
1answer
124 views
revert 'invalid' with grid doesn't return to start position with jQuery UI Draggable
In a nutshell, if you use draggable with a grid and set revert: 'invalid' on draggable items they don't return to exactly the same place you started dragging them from. They return to a place close to ...
3
votes
1answer
246 views
Jquery with droppable draggable and resizable is not working as expected
JQueryUI Draggable inside Droppable with resizable doesn't work. Idea is to be able drag elements which are dragged and dropped to div with resize for dropped elements.
Working code: ...
3
votes
1answer
85 views
Duplicating Jquery Draggables
I'm trying to create a draggalbe items that can be duplicated and dragged onto a droppable. Ok, after a little effort, go that working and made the resulting duplicate draggable. But the "drop" ...
3
votes
1answer
226 views
How to decide whether to accept or reject a jQuery draggable into a droppable
I'm using jQuery and I have the following problem:
In my site I have a chessboard with pieces. Every square is a simple div with the background property to show white or black. Over these squares ...
3
votes
2answers
4k views
how to revert position of a jquery UI draggable based on condition
I have an element which is draggable and an element which is droppable. Once the dragged item is dropped on the dropzone I am trying to execute the following jquery psuedo code:
if(draggedelement == ...
3
votes
2answers
1k views
Applying jquery-ui droppable on nested lists
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 ...
3
votes
2answers
2k views
Multiple drag and drop in JQuery: event after dragging
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 ...
3
votes
3answers
966 views
jQuery Droppable: dropping outside div?
Is there any way I can get jQuery to perform a function when you drag an item outside a droppable DIV?
Let's say that we have draggable or sortable items in a div and you want them deleted if they ...
2
votes
1answer
32 views
How to stop original jQuery draggable image from re-sizing when clicked
I have an issue with a jQuery draggable and droppable area on a site I'm building. I have an image that is 80x80. The idea is to click an image and drag it to a div and drop it in. I need the clone of ...
2
votes
1answer
46 views
jquery cancel sortable on specific handle
I have a list to which I have applied droppable and sortable among each other.
Each list item contains a div box which gets open when click on "edit" link on the list item. There are few other list ...
2
votes
1answer
252 views
JQuery droppable functionality doesn't work
I want to create an application that drops certain elements on other elements, using jquery library. The draggable feature seems to be working, but the droppable feature doesn't work. I tried to ...
2
votes
1answer
225 views
Drop #div1 (draggable) into #div2 (droppable) only when a div that is a child of #div1 is over #div2
I try to drop a div into another one, using his child as the area that should activate the droppable.
To make things more clear let's say that we have #parent_div, #child_div and #droppable. I want ...
2
votes
0answers
178 views
Using jQuery UI effects when dropping items between tabs
I have a jQuery UI tab control. It contains blocks that can be sorted. They can also be dropped on other tabs. When a block is dropped on another tab, I want to use the slide effect to hide the ...
2
votes
1answer
400 views
How to cancel a drop action for jQuery droppable?
I have a jQuery UI droppable which accepts draggables. I want to not allow the drop action if certain conditions are met.
How do I cancel the drop action and do a revert like action?
2
votes
1answer
921 views
Dropped in draggable elements drag and drop to other containers but not itself?
After referenced the JQuery UI Droppable example : Shopping cart. I rewrite it for a test.But got some problem.
Suppose that :
product container: drag and drop the product into shopping cart ...
2
votes
1answer
127 views
How do I limit the number of dropped items for a box?
I am just learning jquery, so this might be something easy.
I am trying to make a really basic game that you can drop the name of the color onto the color box (to help learn about droppable and ...
2
votes
1answer
433 views
jquery sortable/draggable double event firing
I have some drag & drop code which works fine as it is. Just have a little query. I've noticed that if I add an alert within the drop function for debugging purposes (eg. ...
2
votes
1answer
343 views
jquery droppable target
If I have a table with a lot of cells, lets assume 50 rows x 50 columns, is the application of a jquery "droppable" to each cell inefficient?
Can I assign the droppable to the parent TABLE, for ...
2
votes
1answer
193 views
.hide()/.show() and Droppable
I have a problem where the element calls .show() when the draggable triggers drag, does not let me drop into the droppable. How can I fix this?
$(document).ready(function() {
$(".folder").droppable({
...
2
votes
0answers
219 views
jQuery draggable into sortable only works after sorting
I'm experiencing problems with a simple combination of a Draggable and Sortable: initially, the dragging does not work and I do not get a receive callback. Only after I have done a sort (i.e. change ...
2
votes
1answer
521 views
jQuery Droppable Hover and Active Class take Precedence?
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.
So, if my element has background-color set, the active and ...
2
votes
1answer
1k views
jQuery draggable droppable compatibility issue with firefox and ie
ok bear with me, this is one of those long ones.
I have a table of values which stores ID and Field.
<asp:DataGrid runat="server" ID="dgFields" AutoGenerateColumns="false">
...
2
votes
1answer
2k views
JQuery draggable: scroll not working when helper: clone is used
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 ...
2
votes
2answers
905 views
How do I prevent multiple jQuery UI droppables from being triggered?
I have a jQuery UI draggable and several separately-defined droppables. Because one of the droppables is configured tolerance: 'intersect', it's possible for a draggable to be dropped on more than one ...
2
votes
2answers
1k views
Clone object is not droppable
I'm trying to clone a droppable object using Jquery but the cloned object is not droppable.
$(document).ready(function(){
$("input[value='Add']").click(function(e){
e.preventDefault();
...
2
votes
1answer
4k views
jQuery Sortable + Droppable. After dropping, my LI is wrapped inside another LI
This is my code for a draggable connected to a sortable. The thing is, I am creating an LI with a bunch of attributes. BUT when I drag an item to the droppable div, the sortable creates a new li tag ...
2
votes
2answers
2k views
Scriptaculous Droppables onDrop callback, How to reference each element?
Documentation can be found here
It says in the example:
onDrop:
Called whenever a Draggable is released over the Droppable and the Droppable is accepts it. The callback gets three parameters: the ...
1
vote
1answer
43 views
jQuery Droppable and Draggable
I have a little application where you can drag a box around in a container, and also switch places with another one, which is buggy at the moment. They switch places like jQuery sortable, but I'm ...
1
vote
1answer
44 views
jQuery - tolerance: 'fit' of a droppable does not care about border-setting of droppable
I'm developing a little tool and it works so far, but I interfere with the fact that the droppable (with option 'tolerance' set to 'fit') obviously doesn't care about the border of a droppable.
See ...
1
vote
0answers
30 views
JQuery UI ! Draggable image and revertion
I have 4 droppable blocks and 1 draggable image, how to achive effect of revertion, only if the I dropped my image not into droppable element?
I used this options, but can't reach wished result:
...
1
vote
4answers
59 views
Draggable and Droppable function help?
Let's say I have some droppable div's on my left hand side titled zone 1 - 4.
<div id="zone1"></div>
<div id="zone2"></div>
<div id="zone3"></div>
<div ...
1
vote
1answer
43 views
Jquery droppable added via mouseover event does not see OVER event
Because I may have a 1000 (or more) DIVS that all can be dragged and dropped onto one another, I found that putting the jquery .droppable on all the DIVs when the page finishes loading takes way too ...
1
vote
2answers
70 views
How to check if an element is droppable, draggable or other 'ble'?
I've got a bunch of elements. Some are draggable, some are droppable and some are both. How can I detect if an element is draggable or droppable?
1
vote
2answers
106 views
jQuery: Draggable on Resizable Droppable: Item disappears after dropping
I just googled a lot but couldn't find an answer.
I have a resizable div and want to drop something onto it. It works very well so far. But when I use the clone-helper, the item just disappears when ...
1
vote
1answer
74 views
Value Count for Droppable (JQuery)
I am creating a question type for a survey.
I am using the below jsfiddle
http://jsfiddle.net/hP3jc/
What i need is a counter or something alike that will let me know how many of the red blocks are ...
1
vote
0answers
75 views
ViewData and javascript - class name not being read
For some reason I'm having trouble assigning viewdata to some javascript.
I have the following code:
@{
string item = ".playerItem_" + ViewData["itemType"];
}
<script type="text/javascript">
...
1
vote
1answer
70 views
Sortable and droppable deactivate in jQuery UI
I have attached jQuery UI sortable and droppable to a few different pages on my page.
I want to have the elements that are dropped, not end up in the closest column to the 'droppable' column after ...
1
vote
1answer
84 views
jquery droppable 'drop' event help
What I'm essentially doing is creating a list item on drop. Using the drop event I'm then doing some other fancy stuff with the list. The trouble is, on drop - the item is not created yet.
...
1
vote
1answer
100 views
Make divs draggable and droppable for certain elements
I have a page with divs that are draggable and droppable. Each div contains nested divs that are also draggable. I want to be able to drag nested divs from div 1 and drop them on div 2 and also the ...