Replies: 4 comments 10 replies
-
Try replicating the markup of this table implementation: https://devexpress.github.io/devextreme-reactive/react/grid/demos/featured/virtual-scrolling/ |
Beta Was this translation helpful? Give feedback.
-
@spandzgit Curious if you were able to get this working with using a |
Beta Was this translation helpful? Give feedback.
-
I have the same problem. For some reason, both |
Beta Was this translation helpful? Give feedback.
-
tanstack/react-virtual 3.0.0-beta.49 not working with @tanstack/react-table": "^8.7.9", |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I've implemented the infinite scroll example for an implementation to virtualize millions of rows. The virtual scroll is working great and the data rendering is perfectly fine.
For some feature requirements on the rendered data in the list, I need to have a
<table>
instead of<div>
s. I replaced the<div>
s with<table>
<tr>
<td>
and the scroll works fine. But because of the dynamic positioning of the rowsposition: absolute
andtransform: translateY(${virtualRow.start}px)
the<tr>
<td>
s are losing the default abilities of the table - like growth of the width of all the<td>
s based on the highest content of one of<td>
s.Need some ideas or help if someone has tried something along these lines or any help is appreciated.
Beta Was this translation helpful? Give feedback.
All reactions