Replies: 2 comments
-
I found that for v8 there is a way to resize table tags: https://github.com/TanStack/table/blob/main/examples/react/column-sizing/src/main.tsx but I didn't find it for v7, is it possible? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Is there any advantage here to choose div tags over table html tags. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, as I see, in
react-table
examples, some codesandbox examples usetable/thead/tbody/tr/th/td
tags like this sandbox:https://react-table-v7.tanstack.com/docs/examples/basic
But some examples use just
div
tags:https://react-table-v7.tanstack.com/docs/examples/column-resizing
Which approach is better if I want to build very responsive and very feature-rich/advanced table? And why?
I mentioned the word "responsive ", yeah, I know
react-table
(headless) does not do CSS design/responsive styles, it's a tabling engine, but I think the decision between these two (div
ortable/thead/tbody/tr/th/td
) approaches will effect the CSS styling experience.Beta Was this translation helpful? Give feedback.
All reactions