ColReorder drag helper bug w/ jQuery 1.8.1

ColReorder drag helper bug w/ jQuery 1.8.1

rewenrewen Posts: 74Questions: 2Answers: 0
edited September 2012 in Bug reports
Hi Allan,

I found a bug with ColReorder 1.0.6 and jQuery 1.8.1 where the drag helper is not a single TH element but all of the THs in the head of the table. This appears to be becuase of a change in jQuery 1.8 (it could be their bug and not yours, I'm not sure).

It looks like in _fnCreateDragNode you do $('th:not(:eq('+that.s.mouse.targetIndex+'))', this).remove(); and that's no longer getting and removing any elements.

Something like $("th", this).eq(that.s.mouse.targetIndex).siblings('th').remove() might work instead.

Cheers,

Ryan

Replies

  • KwalKwal Posts: 1Questions: 0Answers: 0
    I bumped into this same issue...just adding my +1
  • allanallan Posts: 61,822Questions: 1Answers: 10,127 Site admin
    Hi folks,

    Thanks for the heads up about this. The ColReorder 1.0.8.dev nightly now has this fix in it :-).

    Allan
  • rewenrewen Posts: 74Questions: 2Answers: 0
    Thanks!
This discussion has been closed.