Table support
See original GitHub issueI am currently trying to find a way to use one of your components to render table rows (specifically using material ui).
Here is the general idea of what I’m aiming for
<Table>
<TableHead>...</TableHead>
<TableBody>
<Virtuoso ... />
</TableBody>
</Table>
however I see the issue is that your Virtuoso component renders a few divs I’m assuming to track height, number of items in view, etc.
Maybe there is a way we can pass our own component as a prop to render as a parent element? something={TableBody}?
I’m essentially asking if there is a good way to prevent this kind of markup below?
...
<tbody>
<div ...>
<div ...>
<tr>
...
Let me know what else I can provide. I appreciate what you have done so far!
Issue Analytics
- State:
- Created 4 years ago
- Reactions:8
- Comments:26 (10 by maintainers)
Top Results From Across the Web
Table Support - Crossword Clue Answers
The crossword clue Table support with 3 letters was last seen on the June 14, 2022. We think the likely answer to this...
Read more >table support - Amazon.com
Kaupuar Metal Adjustable Legs for Table/Bed and Sofa/Furniture Cabinet Foot Legs, Set of 2, Heavy Duty Bed Center Frame Slat Support Leg 5...
Read more >TABLE SUPPORT crossword clue - All synonyms & answers
All solutions for "Table support" 12 letters crossword clue - We have 3 answers with 3 to 7 letters. Solve your "Table support"...
Read more >Table support - crossword puzzle clue
Table support is a crossword puzzle clue that we have spotted over 20 times. There are related clues (shown below). Referring crossword puzzle...
Read more >Table Brackets - Folding Table Supports and Decorative ...
Folding brackets allow you to create a table you can pack up and move with ease, while more decorative steel leg supports are...
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

Everyone, v2.5.0 includes
TableVirtuosowhich works with HTML Tables, MUI Table and React Table. You can start from the example here: https://virtuoso.dev/hello-table/.If something does not work as expected, please open a new issue with repro.
Cheers,
What about something like this? https://codesandbox.io/s/virtuoso-table-fshis?file=/src/App.tsx