#3830 closed bug (notabug)
ConnectWith sortables second list goes behind first
Reported by: | Esmeralda | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.core | Version: | 1.6rc4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When using UI sortables and connecting two lists, the first list items go behind the second in IE 7. An example can be seen on the demo page http://ui.jquery.com/latest/demos/functional/#ui.sortable .
Note: See
TracTickets for help on using
tickets.
This is a commonly reported issue. In fact, it's not so much an issue but related to the zIndex stacking of Internet Explorer. To fix that, the dragging helper must be appended to a higher node, for example the body element than both lists. It can be done this way:
helper: 'clone', appendTo: 'body'
as options.