facebookarchive / fixed-data-table

A React table component designed to allow presenting thousands of rows of data.
http://facebook.github.io/fixed-data-table/
Other
4.3k stars 553 forks source link

Use grouped and ungrouped columns at the same time #419

Open onchainguy-btc opened 8 years ago

onchainguy-btc commented 8 years ago

Is there any way to achieve a layout like a this?

+-------------------------------------------------------------------+
|          Names         |            |          |                  |
+------------------------+ Birthday   | City     | Mail             |
| First name | Last name |            |          |                  |
+------------+-----------+------------------------------------------+
| Roy        | Stokes    | 1989-01-01 | New York | roy@grid.com     |
| Kelly      | Rose      | 1988-02-02 | London   | kelly@grid.com   |
+-------------------------------------------------------------------+

I don't want it to look like this:

+-------------------------------------------------------------------+
|          Names         |                                          |
+------------------------+------------------------------------------+
| First name | Last name | Birthday   | City     | Mail             |
+------------+-----------+------------------------------------------+
| Roy        | Stokes    | 1989-01-01 | New York | roy@grid.com     |
| Kelly      | Rose      | 1988-02-02 | London   | kelly@grid.com   |
+-------------------------------------------------------------------+
hinikai commented 7 years ago

is it work?