filamentgroup / tablesaw

A group of plugins for responsive tables.
MIT License
5.48k stars 434 forks source link

Can't show correct when rowspan > 1 with Stack Mode #247

Closed vanloc0301 closed 5 years ago

vanloc0301 commented 7 years ago

I have a table with structure like:

<tr>
    <td rowspan="2">User</td>
    <td>Jackson</td>
</tr>
<tr>
    <td>Smith</td>
</tr>

It will show table in Stack Mode like:

User          Jackson
Smith

It should be like:

User          Jackson
User          Smith
zachleat commented 7 years ago

This is a valid bug and I’ve added this limitation to the readme. However, your example isn’t quite right. If you want labels to show up when Stack mode is activated, they’d need to be headers cells in <thead>.

ghost commented 7 years ago

153

zachleat commented 5 years ago

This repository is now using lodash style issue management for enhancements. This means enhancement issues will now be closed instead of leaving them open.

The enhancement backlog can be found here: https://github.com/filamentgroup/tablesaw/issues?utf8=%E2%9C%93&q=label%3Aneeds-votes+sort%3Areactions-%2B1-desc+

Don’t forget to upvote the top comment with 👍!