Search and Top Navigation
#3830 closed bug (notabug)
Opened January 15, 2009 01:29AM UTC
Closed January 23, 2009 11:59AM UTC
Last modified October 11, 2012 09:15PM UTC
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 .
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.