react-table-library icon indicating copy to clipboard operation
react-table-library copied to clipboard

:bento: React Table Library

Results 50 react-table-library issues
Sort by recently updated
recently updated
newest added

This pull request updates the project to use React 18 and addresses a TypeScript issue in the `VirtualizedTable` component. The most important changes include upgrading React and its related dependencies,...

Rendered a table with around 40 columns with resize capability and custom theme. Table is working as expected for horizontal and vertical scroll. Once we resize width of any column...

Hi @rwieruch , can you also add keyboard interactions like [MUI-X DataGrid](https://mui.com/x/react-data-grid/editing/) according to these [vai-aria patterns](https://www.w3.org/WAI/ARIA/apg/patterns/grid/)? I think this feature will make react-table-library superior to any other libraries. I...

From [this commit](https://github.com/table-library/react-table-library/commit/77d33b153e41572d0cd945a5c3e0e3abe3b8018e), the tag **HeaderCellSort** was not working properly. The **input text** ends up inside the **button** and becomes unusable

This is a request for enhancement to allow columns to be reordered by dragging and dropping the column headers to define the new order

Whenever I write something that would normally be a void element inside a ``, the library seems to convert it to an open element with a closing `` tag. For...

When using gridColumnStart and gridColumnEnd there is error in console Warning: Each child in a list should have a unique "key" prop.

There's currently no way to make table rows clickable without adding onClick handlers to every individual cell's renderCell function. Current workaround: ``` { label: "Name", renderCell: (item) => ( handleRowClick(item)}>...

This pull request introduces support for tracking which rows are visible in the virtualized table component. The main change is the addition of an `onItemsRendered` callback, allowing consumers to be...

The hook added in src/table/Table/index.tsx ```ts // no selection of content (e.g. text) in table if shift is active (e.g. select shift feature) const isShiftDown = useShiftDown(); ``` causes slow...