Add example of how to implement flex <Table/> to the Docs
See original GitHub issue- I have searched the issues of this repository and believe that this is not a duplicate.
What problem does this feature solve?
Shows how to use <Table/>
in Flex layout
What does the proposed API look like?
<Table type="flex"/>
How let table’s body expand in parent flex container with overflow scrolling for the table items ?
Imagine such layout:
We can set
scroll={{y: 240}}
prop to the <Table/>
(Red line)
How can we set table body to table to expand till the end of parent component? (Green line)
Issue Analytics
- State:
- Created 5 years ago
- Comments:13 (5 by maintainers)
Top Results From Across the Web
CREATE FLEX TABLE - Vertica
CREATE FLEX TABLE. Creates a flex table in the logical schema. Declaring columns (or other supported parameters) is optional. If you do not...
Read more >Using the flextable R package - GitHub Pages
Flextable documentation, an R package for generating reporting tables from R in Word, HTML, PDF and PowerPoint formats.
Read more >flextable.pdf
Description Create pretty tables for 'HTML', 'PDF', 'Microsoft Word', 'Microsoft PowerPoint' documents from 'R Markdown' and as 'Grid Graphics' ...
Read more >flextable overview
flextable can easily create reporting table from data.frame . You can merge cells, ... To add these objects in PowerPoint or Word documents,...
Read more >Flexbox - Learn web development | MDN
You can also use flexbox features to align flex items along the main or cross axis. Let's explore this by looking at a...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Try this: https://codesandbox.io/s/l4vqz209ym
Currently, I’ve implemented “flexible” layout via calculating the height of parent component (it’s a flex container) and setting the
scroll={{y: *}}
prop on theTable
.But it doesn’t feel natural. (CSS is the way to go, IMO)
If you are planning to introduce
Table
with flexible height (flexible body) – I can help to contribute towards this feature. I think it’s a quite common issue with this table