jquery-sortable icon indicating copy to clipboard operation
jquery-sortable copied to clipboard

Column dragging with rowspan issue

Open empatel96 opened this issue 5 years ago • 0 comments

Hi,

I've got an issue with dragging a column when I have a rowspan set for any of the TD's. <tr> <td>1</td> <td>7</td> <td>13</td> </tr> <tr> <td rowspan="2">2</td> <td>8</td> <td>14</td> </tr> <tr> <td>9</td> <td>15</td> </tr>

Notice how the cell with 9 doesn't stick to it's column but switches into other columns when dragging. And the same goes for other cells within the same row.

Original: original

After Drag fake1 fake2

The table will be used to create new columns dynamically and some will possibly have customised rowspans so I'm not sure about how to go about doing it

empatel96 avatar Jul 02 '19 09:07 empatel96