You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have racked my brain trying to figure out a solution, but if it works for this it breaks in other ways.
The problem with rowspans is that they affect the row(s) following the current one. So to not break the table we would have to group them and lock them to that group. This could probably work for the column that has the rowspan, but sorting would break for all the other columns, since they cannot be allowed to split the group.
(Not to mention what would happen if a row has multiple columns with rowspans. Or overlapping rowspans from other rows. 🫣)
I am sorry, but I think it may not even be theoretically possible 🤯😢
For a table with
rowspan="n"
, the sorting leads to a broken table display. Here's an example:Expected result: It treats a rowspan as a single row for sorting purposes.
Actual result: The table is scrambled, sometimes columns are added.
The text was updated successfully, but these errors were encountered: