Custom Query (7259 matches)
Results (70 - 72 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#5189 | invalid | Draggable has a few issues when connecting to more than one sortable | ||
Description |
Then you connect a draggable to two sortable lists, at least three things happen that shouldn't: Firstly, a stop event is sent whenever you drag out of the sortable (even when you drag to other sortable), which is inconsistent with the way sortables work. Secondly, the sortables start losing the "revert" animation when you drag the draggable item out of the sortables. Finally, if you drag the draggable around to more than one sortable before dropping the item into one of those sortables, you get a "revert" animation that goes to the draggable's point of origin before "reverting" back to the dropping place in the sortable. These problems happen too when you use version 1.7 (I believe) I've put together a test case here: http://www.webdevout.net/test?02w&raw |
|||
#10583 | notabug | Datepicker Position Problem in IE 8 and IE 10 | ||
Description |
I had a Problem using the ui.datepicker with IE8 and IE10, but in Chrome everything works fine. The Datepicker was shown in the wrong Position when the browser window was scrolled down the date dialog would show up at the top of the page. |
|||
#5378 | invalid | Nested draggables (with opacity set) in IE: helper not visible after dragging | ||
Description |
The following code gives a problem when dragging the divs in IE (tested only version 8) If you remove the opacity definition for the outer draggable it works without a problem. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <%@ page session="true" contentType="text/html; charset=UTF-8" pageEncoding="ISO-8859-1"%> <html> <head> <title>TestPage</title> <script src="../js/jquery-1.4.2.js" type="text/javascript"></script> <script type="text/javascript" src="../js/ui/jquery.ui.core.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.widget.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.mouse.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.button.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.sortable.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.draggable.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.droppable.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.resizable.js"></script> <script type="text/javascript" src="../js/ui/jquery.ui.dialog.js"></script> <style type="text/css"> #inner { width: 300px; height: 200px; background-color: #ff0000; } #outer { width: 600px; height: 800px; background-color: #000000; } </style> <script type="text/javascript"> $(function() { $("#outer").draggable({ revert : false ,scroll: 'true' ,opacity : 1.0 }); $("#inner").draggable({ cursor : 'pointer', revert : false, helper: 'clone' }); }); </script> </head> <div id="outer">outer <div id="inner">inner</div> </div> </body> </html> |