Using select and rowReorder extensions at the same time

Using select and rowReorder extensions at the same time

nick_wallacenick_wallace Posts: 2Questions: 0Answers: 0

I am having difficulty getting select (for selecting a row) and rowReorder (for changing order of rows) extensions to work at the same time. It seems like they are not compatible with each other.

I realised the issue was that rowReorder clones a row in the table, which then prevents the click event from occurring on the underlying table row. So I made some modifications to rowReorder to wait for a mousemove before cloning the table row (just moved the code in the source from mousedown to mousemove and added a flag to track when it has cloned the row), which helps. However for some reason they work with each other correctly on Firefox, but not on IE (any version). I think IE handles the click, mouseup, mousedown, mousemove events differently but I can't track down what it is that isn't working.

This discussion has been closed.