0
votes
1answer
28 views
jQuery draggable droppable compatibility issue with firefox and ie
Hi,
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="fal …
0
votes
1answer
72 views
jQuery Sortable+Droppable vs Draggable special functionality
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 d …
0
votes
1answer
68 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. The …
0
votes
0answers
22 views
JQuery Drag Drop - How to Reset to Original State
Hi,
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 conce …
0
votes
1answer
72 views
jquery ui drag/drop getting position from multiple draggables
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 ha …
0
votes
1answer
153 views
jquery droppable item overlap
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 …
0
votes
1answer
55 views
jQuery UI: droppable background?
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.
The way I'v …
0
votes
2answers
166 views
jquery droppable accept
Hi All,
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 …
0
votes
3answers
298 views
Jquery Drag-Drop (Getting element being dropped into)
I am trying to detect which cell an object is being dropped into.
<table>
<tr>
<td class="weekday">Sun</td>
<td class="weekday">Mon</td>
<td …
0
votes
1answer
377 views
jquery Multiple Sortables/droppable Revert Issue
The Scenario:
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 …
0
votes
1answer
68 views
How can i inject an object inside a context of a draggable element in JQuery ?
Hi,
I use draggable/droppable JQuery feature as follows
div.container {
height:400px;
}
<div class="container" id="source">
<div id="0">Item 0</div>
…
0
votes
1answer
88 views
jQuery droppable out event fails to trigger?
$(".LWdrop").droppable({
accept: ".LW",
drop: function(event, ui){
ui.draggable.addClass("LWactive");
$(this).droppable('option', 'ac …
3
votes
4answers
672 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, …
1
vote
2answers
112 views
jQuery Drag from a List (without removing element) and Drop into another List
How can I have two lists (div or table elements) in which I can drag & drop items from one to the other (I think jQuery droppable does this), but without actually removing it f …
0
votes
1answer
64 views
Manipulating jQuery draggables/droppables in script [UPD]
I want to append item to sortable list by script. Users can drag item to list directly, and can check some checkboxes and press "Send to list" button. First approach works, second …
