Row selection is implemented through enableRowSelection and rowSelection states, and setRowSelection is used to manage the selected state, and use getFilteredSelectedRowModel to obtain selected rows for batch operations; 2. The nested subtable uses getSubRows to define subdata, combine row.getCanExpand and getIsExpanded to control the expansion state, and render the subrow content through getExpandedRowModel; 3. The @dnd-kit library is required to introduce the column drag-down order, encapsulate the table header into a drag-down item in the SortableContext, and then update the columnOrder status through onColumnOrderChange after dragging; 4. Virtual scrolling uses @tanstack/react-virtual's useVirtual to virtualize rows, render only the visual area, control position and display through rowVirtualizer.getTotalSize and getVirtualItems, significantly improving the performance under large data volume; 5. Dynamic column configuration controls column display through columnVisibility status and column.toggleVisability, and combines UI check boxes to realize user-defined column display, which can be expanded to local storage; 6. Server-side pagination sorting filtering closes local processing by enabling manualPagination, manualSorting, and manualFiltering. API requests are triggered by pagination, sorting, and globalFilter status, and manages asynchronous data flows in combination with React Query to achieve efficient remote data interaction.
React TanStack Table (formerly known as @tanstack/react-table
) is a powerful, type-safe, headless table library that is ideal for building advanced table patterns. Instead of rendering the UI, it focuses on providing logic and state management, giving you complete control over the UI presentation. Here are several common advanced table patterns and how they are implemented in TanStack Table.

1. Line selection and batch operations
Suitable for scenarios where interactions such as multiple selection, all selection, and anti-select are required, such as data operations in the background management system.
Key points of implementation:
- Use
rowSelection
status to manage selected rows. - Provides "Select All", "Anti-Select" and "Clear Select" functions.
const [rowSelection, setRowSelection] = useState({}); const table = useReactTable({ data, columns, state: { rowSelection, }, enableRowSelection: true, onRowSelectionChange: setRowSelection, getCoreRowModel: getCoreRowModel(), });
Example of batch operation:
const selectedRows = table.getFilteredSelectedRowModel().rows; Return ( <div> <button onClick={() => console.log(selectedRows)}> Batch deletion ({selectedRows.length}) </button> <table>...</table> </div> );
? Tip: You can get the onChange processing function of select all checkbox through
table.getToggleAllRowsSelectedHandler()
.
2.Nested subtables (Expandable Rows)
While displaying the main table data, click the row to expand the subtable (such as the order line item).
Implementation method:
- Use
row.getCanExpand()
androw.getIsExpanded()
. - Add an expand button in the cell.
- Render subrows using
getExpandedRowModel()
.
const columns = [ { id: 'expand', header: () => null, cell: ({ row }) => { return row.getCanExpand() ? ( <button onClick={row.getToggleExpandedHandler()}> {row.getIsExpanded() ? '?' : '?'} </button> ) : null; }, }, // Other columns... ]; const table = useReactTable({ data, columns, getSubRows: (row) => row.subRows, // Assume that each row has a subRows field getCoreRowModel: getCoreRowModel(), getExpandedRowModel: getExpandedRowModel(), });
Render subline:
{table.getRowModel().rows.map(row => ( <tr key={row.id}> {/* Render main line*/} </tr> {row.getIsExpanded() && ( <tr> <td colSpan={columns.length}> <SubTable data={row.subRows} /> </td> </tr> )} ))}
3. Columns can be sorted (Drag & Drop Columns)
Allows the user to rearrange the column order by dragging and dropping.

Need to combine HTML5 Drag/Drop or @dnd-kit
.
Use @dnd-kit
to recommend and be more flexible:
npm install @dnd-kit/core @dnd-kit/sortable
Basic ideas:
- Wrap the column header into drag-able items.
- Update the column order after dragging (via
setColumnOrder
).
const [columnOrder, setColumnOrder] = useState(() => columns.map(col => col.id) ); const table = useReactTable({ data, columns, state: { columnOrder }, onColumnOrderChange: setColumnOrder, getCoreRowModel: getCoreRowModel(), });
Render the header with DndContext and SortableContext:
<DndContext onDragEnd={handleDragEnd}> <SortableContext items={columnOrder} strategy={horizontalListSortingStrategy}> <head> {table.getHeaderGroups().map(group => ( <tr key={group.id}> {group.headers.map(header => ( <SortableHeader key={header.id} id={header.id}> {header.isPlaceholder? null: flexRender( header.column.columnDef.header, header.getContext() )} </SortableHeader> ))} </tr> ))} </head> </SortableContext> </DndContext>
??
SortableHeader
needs to be encapsulated by yourself anduseSortable()
to bind drag handle.
4. Virtualized Rows & Columns
When the data volume is large (thousands of rows), avoid rendering all DOM nodes to improve performance.
Use @tanstack/react-virtual
npm install @tanstack/react-virtual
Implementation steps:
- Create a virtual scroll container.
- Render only rows and columns within the visual area.
const { rows } = table.getRowModel(); const rowVirtualizer = useVirtual({ size: rows.length, parentRef: containerRef, estimateSize: () => 40, }); const virtualRows = rowVirtualizer.getVirtualItems();
When rendering:
<div ref={containerRef} style={{ overflow: 'auto', height: '500px' }}> <div style={{ height: `${rowVirtualizer.getTotalSize()}px`, position: 'relative' }}> {virtualRows.map(virtualRow => { const row = rows[virtualRow.index]; Return ( <div key={row.id} data-index={virtualRow.index} ref={virtualRow.measureRef} style={{ position: 'absolute', top: 0, left: 0, width: '100%', height: `${virtualRow.size}px`, transform: `translateY(${virtualRow.start}px)`, }} > {row.getVisibleCells().map(cell => ( <div key={cell.id}> {flexRender(cell.column.columnDef.cell, cell.getContext())} </div> ))} </div> ); })} </div> </div>
? Virtual scrolling can greatly improve long list performance, and it is recommended to consider using it when >100 rows.
5. Dynamic Column and Column Configuration Panel
Allows users to customize which columns to display, adjust column width, etc.
Implementation method:
- Use
column.getIsVisible()
andcolumn.toggleVisibility()
. - Provide column configuration pop-up windows or drawers.
const [columnVisability, setColumnVisability] = useState({}); // Control a column to show/hide const toggleColumn = (columnId) => { setColumnVisibility(prev => ({ ...prev, [columnId]: !prev[columnId], })); }; // Use const table = useReactTable({ state: { columnVisibility }, onColumnVisabilityChange: setColumnVisability, // ... });
Column Configuration UI Example:
{table.getAllColumns().map(col => { Return ( <label key={col.id}> <input type="checkbox" checked={col.getIsVisible()} onChange={col.getToggleVisibilityHandler()} /> {col.id} </label> ); })}
? Extended to "Save Column Configuration to LocalStorage" or user preferences.
6. Server paging, sorting, and filtering
Suitable for large data sets, the front-end is only responsible for requests, and the back-end returns filtered data.
Key points:
- Disable local pagination/sorting/filtering.
- Manually manage state and trigger API requests.
const [pagination, setPagination] = useState({ pageIndex: 0, pageSize: 10, }); const [sorting, setSorting] = useState([]); const [globalFilter, setGlobalFilter] = useState(''); // Simulate server data acquisition useEffect(() => { fetchData({ pagination, sorting, globalFilter }); }, [pagination, sorting, globalFilter]);
Configure table:
const table = useReactTable({ data: serverData, columns, state: { pagination, sorting, globalFilter, }, manualPagination: true, manualSorting: true, manualFiltering: true, pageCount: totalPageCount, onPaginationChange: setPagination, onSortingChange: setSorting, onGlobalFilterChange: setGlobalFilter, getCoreRowModel: getCoreRowModel(), });
? Combined with
React Query
it can easily achieve caching, retry and loading status.
Summarize
The flexibility of TanStack Table makes it easy to support a variety of complex scenarios:
model | Core API/Technology |
---|---|
Row selection | enableRowSelection , rowSelection
|
Sub-table | getCanExpand , getExpandedRowModel
|
Drag and drop column | @dnd-kit , setColumnOrder
|
Virtual scrolling | @tanstack/react-virtual
|
Column configuration | column.toggleVisibility
|
Server-side control | ` |
The above is the detailed content of Advanced Table Patterns with React TanStack Table. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

React itself does not directly manage focus or accessibility, but provides tools to effectively deal with these issues. 1. Use Refs to programmatically manage focus, such as setting element focus through useRef; 2. Use ARIA attributes to improve accessibility, such as defining the structure and state of tab components; 3. Pay attention to keyboard navigation to ensure that the focus logic in components such as modal boxes is clear; 4. Try to use native HTML elements to reduce the workload and error risk of custom implementation; 5. React assists accessibility by controlling the DOM and adding ARIA attributes, but the correct use still depends on developers.

Shallowrenderingtestsacomponentinisolation,withoutchildren,whilefullrenderingincludesallchildcomponents.Shallowrenderingisgoodfortestingacomponent’sownlogicandmarkup,offeringfasterexecutionandisolationfromchildbehavior,butlacksfulllifecycleandDOMinte

StrictMode does not render any visual content in React, but it is very useful during development. Its main function is to help developers identify potential problems, especially those that may cause bugs or unexpected behavior in complex applications. Specifically, it flags unsafe lifecycle methods, recognizes side effects in render functions, and warns about the use of old string refAPI. In addition, it can expose these side effects by intentionally repeating calls to certain functions, thereby prompting developers to move related operations to appropriate locations, such as the useEffect hook. At the same time, it encourages the use of newer ref methods such as useRef or callback ref instead of string ref. To use Stri effectively

Create TypeScript-enabled projects using VueCLI or Vite, which can be quickly initialized through interactive selection features or using templates. Use tags in components to implement type inference with defineComponent, and it is recommended to explicitly declare props and emits types, and use interface or type to define complex structures. It is recommended to explicitly label types when using ref and reactive in setup functions to improve code maintainability and collaboration efficiency.

Server-siderendering(SSR)inNext.jsgeneratesHTMLontheserverforeachrequest,improvingperformanceandSEO.1.SSRisidealfordynamiccontentthatchangesfrequently,suchasuserdashboards.2.ItusesgetServerSidePropstofetchdataperrequestandpassittothecomponent.3.UseSS

WebAssembly(WASM)isagame-changerforfront-enddevelopersseekinghigh-performancewebapplications.1.WASMisabinaryinstructionformatthatrunsatnear-nativespeed,enablinglanguageslikeRust,C ,andGotoexecuteinthebrowser.2.ItcomplementsJavaScriptratherthanreplac

Vite or VueCLI depends on project requirements and development priorities. 1. Startup speed: Vite uses the browser's native ES module loading mechanism, which is extremely fast and cold-start, usually completed within 300ms, while VueCLI uses Webpack to rely on packaging and is slow to start; 2. Configuration complexity: Vite starts with zero configuration, has a rich plug-in ecosystem, which is suitable for modern front-end technology stacks, VueCLI provides comprehensive configuration options, suitable for enterprise-level customization but has high learning costs; 3. Applicable project types: Vite is suitable for small projects, rapid prototype development and projects using Vue3, VueCLI is more suitable for medium and large enterprise projects or projects that need to be compatible with Vue2; 4. Plug-in ecosystem: VueCLI is perfect but has slow updates,

Immutable updates are crucial in React because it ensures that state changes can be detected correctly, triggering component re-rendering and avoiding side effects. Directly modifying state, such as push or assignment, will cause React to be unable to detect changes. The correct way to do this is to create new objects instead of old objects, such as updating an array or object using the expand operator. For nested structures, you need to copy layer by layer and modify only the target part, such as using multiple expansion operators to deal with deep attributes. Common operations include updating array elements with maps, deleting elements with filters, adding elements with slices or expansion. Tool libraries such as Immer can simplify the process, allowing "seemingly" to modify the original state but generate new copies, but increase project complexity. Key tips include each
