The jQuery UI Draggable plugin makes selected elements draggable with mouse movement.
2
votes
0answers
16 views
jQuery sortable / draggable iframe item sticks to cursor
I am working on a editor which uses an iframe. In that iframe i have a jQuery sortable list and outside the iframe i have draggable objects that i want to drag inside the iframe. All this is well and ...
2
votes
0answers
91 views
Cursor doesn't blink in a ui dialog (Chrome only)
Here is a piece of code that shows an issue I'm having http://jsfiddle.net/XmqgA/
HTML:
<div id="dialogg" style="display:none">
<input type="text" id="textinp" />
</div>
...
2
votes
0answers
521 views
Scrolling a list using jQuery UI Draggable and jQuery Touch Punch on an iPad is not working properly
See the jsfiddle below:
jsfiddle
When viewing this on a desktop browser scrolling works as I expect it to. You can use the scrollbars to scroll the list, and you can click and drag the boxes without ...
2
votes
0answers
545 views
Jquery UI Draggable/Sortable without holding the mouse button
I was searching for the solution across the site, however did not find anything. I am facing a problem where I need to redo the style of dragging. I am using jquery ui for the draggable/sortable part. ...
2
votes
0answers
157 views
Drag & Drop faulty registration after scaling
I'm working on a project where a user has to drag and drop the correct items onto a technical drawing. For example, a motherboard: the user will get a picture of a CPU or DDR memory, and he will have ...
2
votes
0answers
159 views
Draggable containment alternative
I am using 2 divs that I can drag em in same container.
For example I have left float div1 and right float div2 which are in divC container.
They can drag only horizontally left and right. But the ...
2
votes
0answers
296 views
Droppable not recognising draggables
I'm using jQuery to create a droppable element - this appears to work fine, as the element gets the class ui-droppable.
I've set it up like this:
$('#trashcan').droppable({
drop: ...
2
votes
0answers
461 views
Jquery UI - Droppable block inside droppable wrapper
Im really stuck, i want to be able to drag a block in a droppable div inside a droppable wrapper.
I must get the id of the div where the block is being dropped.
Please take a look here to understund ...
1
vote
0answers
28 views
jQuery UI: Accessing the droppable that a draggable was dropped on from the `dragstop` event of the draggable
I have a draggable and a droppable. The draggable has a helper which returns back to the location of the draggable itself whenever it is dropped. As far as I can tell, the dragstop event of the ...
1
vote
0answers
28 views
JQuery drag event on draggable item performance issue
I am currently trying to implement some draggable items on my website. But there is one big problem for me. If i do some calculations inside my drag handler the dragging seems to be very jigglish and ...
1
vote
0answers
76 views
JqueryUI draggable/droppable mouse cursor not aligned with element when appending dragged element to different div while dragging
I am experiencing an issue with the jqueryUI draggable and droppable. The issue that i am facing is the fact that when i move an element from one div to another (during dragging using .append() ) it ...
1
vote
0answers
74 views
Jquery ui connections of dynamically made elements not works
I have some elements like this:
$("#select_h").draggable({
connectToSortable:".group",
helper: "clone",
revert:"invalid"
});
$("#datepick_h").draggable({
connectToSortable:".group",
helper: ...
1
vote
0answers
77 views
Connecting two draggeable, sortable objects
I have two elements that are connected one is a sidebar element and the other is a chart or object that represents the data. If the sidebar is reordered then the corresponding, connected object should ...
1
vote
0answers
38 views
Jquery drop: function(event,ui) works when drop is triggered.But according to my requirement I need to traverse through list of items dropped
Requirement is something like this.
List of Draggables:
Organisation
Amount Spent
List of Droppables:
After user drags and drops the necessary elements he clicks on a button which fetches the all ...
1
vote
0answers
63 views
Jquery Draggable : Replace,Split and Add New
I am using jquery draggable to drag and drop contents/signatures in tds present in our email editor as shown below.
Various clients are having different requirements:
Case 1: some want dragged ...