Changes between Initial Version and Version 3 of Ticket #5959


Ignore:
Timestamp:
Nov 5, 2012, 6:46:25 PM (10 years ago)
Author:
mikesherov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5959

    • Property Priority changed from blocker to major
    • Property Milestone changed from TBD to 2.0.0
  • Ticket #5959 – Description

    initial v3  
    11I have a draggable list on the page, whose items are connected to multiple sortable lists using 'connectToSortable'. When I drag the first element and drop in to one of the sortables, it works fine. But on subsequent operations, the drag/drop fails with the following errors in the FF (3.6.8) console.
    22
     3{{{
    34Error: this.offsetParent[0] is undefined
    45Source File: http://www.ship.989studios.com/js/jquery/ui/jquery-ui-1.8.4.custom.js
     
    89Source File: http://www.ship.989studios.com/js/jquery/ui/jquery-ui-1.8.4.custom.js
    910Line: 3960
     11}}}
    1012
    1113After changing the method _getParentOffset in jquery-ui-1.8.4.custom.js as follows, it works fine. Is this a valid fix?
    12 
     14{{{
    1315        _getParentOffset: function() {
    1416
     
    4143
    4244        }
    43 
     45}}}
    4446Thanks