Opened 11 years ago
Closed 10 years ago
#8197 closed bug (invalid)
start drag fails in ie7+8 when started on a element and distance set
Reported by: | immoserver | Owned by: | immoserver |
---|---|---|---|
Priority: | minor | Milestone: | 2.0.0 |
Component: | ui.sortable | Version: | 1.8.18 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
testcase: http://jsfiddle.net/yjjM5/2/
when you open the test in ie7+8 and start dragging a li on the text or the dot everything works fine. but when you start dragging on the a element "link" then the drag wont start.
When you remove the distance option it works.
Change History (7)
comment:1 Changed 11 years ago by
comment:3 Changed 11 years ago by
I've done a little research and stumbled upon this fix: http://davidwalsh.name/prevent-internet-explorers-default-image-dragging-action
adding this line
document.ondragstart = function () { return false; };
disables IEs native dragging "feature" and resolves the problem.
shouldnt draggable/sortable add this when needed ?
comment:4 Changed 11 years ago by
Asynchronous determination of whether to handle an interaction is actually a much larger issue than just completely disabling native drag.
comment:5 Changed 10 years ago by
Milestone: | 1.9.0 → 2.0.0 |
---|
comment:6 Changed 10 years ago by
Owner: | set to immoserver |
---|---|
Status: | new → pending |
Thanks for taking the time to contribute to the jQuery UI project! I can no longer reproduce the issue using the latest jQuery and jQuery UI using the info provided. http://jsfiddle.net/JC45E/
If you can still reproduce it, please feel free to reply to this ticket with a test case showing the problem. Thanks!
comment:7 Changed 10 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
this also happens when the drag starts on an image, updated testcase: http://jsfiddle.net/yjjM5/4/
might be related to ticket #7359 other browsers work fine.