table icon indicating copy to clipboard operation
table copied to clipboard

🤖 Headless UI for building powerful tables & datagrids for TS/JS - React-Table, Vue-Table, Solid-Table, Svelte-Table

Results 373 table issues
Sort by recently updated
recently updated
newest added

### Describe the bug This could potentially be an issue with React Dev tools however, I am unable to replicate it with any other react code. After opening React Dev...

### Describe the bug With latest `8.5.11` version using the Global filter in combination with `number` fields gives: Note this was already raised in https://github.com/TanStack/table/issues/4210 but still happens with latest...

### Describe the bug In some cases, when an undefined cell value is present in a column, the sorting toggle for that column doesn't follow the `asc-desc-undefined` pattern; instead, it...

### Describe the bug Hi, I have created a table that performs the row expansion as well as has a global search filter for filtering of data. Currently, I am...

### Describe the bug When using manual pagination, if we have zero pages of results, any attempt to set the pageIndex gives a pageIndex of -1 (which would often be...

I saw that in other PRs, people asked the author to remove the committed yarn.lock file. None of the other example folders contains yarn.lock and I would like to match...

Adding `kitchen-sink` to react examples: 1. Sorting 2. Pagination 3. Filtering 4. Resizable Columns 5. Column Visibility 6. Header Grouping 7. Table Pins 8. Row Selection Screenshots:

### Describe the bug I noticed that `header.column.getCanSort()` returns false if I don't provide an `accessorKey` or `accessorFn`, per this condition: https://github.com/TanStack/table/blob/main/packages/table-core/src/features/Sorting.ts#L296-L301 The thing is that when using the `manualSorting`...

### Describe the bug Filtering a column defines like: ``` { id: 'name', header: 'Name', accessorKey: 'name', } ``` works, even if that column has null values. Now when doing...

This adds a test for the behaviour described in #4121. It also covers the bug which was fixed in #4212. It also adds a few more common use cases.