Table Virtuoso Basic Example
The TableVirtuoso
component can display large tables with unknown row sizes. It has most of the Virtuoso
capabilities sans pinning top items. It also supports sticky table headers.
You do not have to configure anything apart from the data
or the totalCount
and the itemContent
renderer.
The itemContent
render callback accepts index
, and item
parameter (if data
is set),
which specifies the absolute index of the item rendered;
It is up to you to build and return the respective content.
Styling and markup
The component renders an HTML table structure. Few CSS settings can affect its look:
- A
border-collapse: collapse
setting ontable
causes the fixed header borders to scroll away. To fix, useborder-collapse: separate
and specify bottom/right borders. table
should not have styling that changes itsdisplay
andoverflow
.
Table with data
Live Editor
function App() { return ( <TableVirtuoso style={{ height: 400 }} data={Array.from({ length: 100 }, (_, index) => ({ name: `User ${index}`, description: `${index} description` }))} itemContent={(index, user) => ( <> <td style={{ width: 150 }}>{user.name}</td> <td>{user.description}</td> </> )} /> ) }
Result
Loading...
Table with totalCount
Live Editor
function App() { const users = useMemo(() => Array.from({ length: 100 }, (_, index) => ({ name: `User ${index}`, description: `${index} description` })), []) return ( <TableVirtuoso style={{ height: 400 }} totalCount={users.length} itemContent={(index) => { const user = users[index] return ( <> <td style={{ width: 150 }}>{user.name}</td> <td>{user.description}</td> </> ) }} /> ) }
Result
Loading...
Table with useWindowScroll
Live Editor
function App() { return ( <TableVirtuoso data={Array.from({ length: 100 }, (_, index) => ({ name: `User ${index}`, description: `${index} description` }))} useWindowScroll fixedHeaderContent={(index, user) => ( <tr> <th style={{ width: 150, background: 'blue', color: 'white' }}>Name</th> <th style={{ background: 'blue', color: 'white' }}>Description</th> </tr> )} itemContent={(index, user) => ( <> <td style={{ width: 150 }}>{user.name}</td> <td>{user.description}</td> </> )} /> ) } render(<App />)
Result
Loading...