Custom Query (7259 matches)
Results (28 - 30 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#5355 | invalid | cssPosition in sortable | ||
Description |
Forum: http://forum.jquery.com/topic/1-8rc2-cssposition-in-sortable Forum has suggested solution. |
|||
#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> |
|||
#5407 | invalid | helper text in draggable gets small in IE | ||
Description |
I created a draggable/droppable where the helper displays a text at the cursor. In Gecko browsers, the text is on 1 line (which it should), but in IE it makes a new line at each space, so I get a column of words. I worked around it by replacing the spaces by . |
Note: See TracQuery
for help on using queries.