silevis / reactgrid

Add spreadsheet-like behavior to your React app

Home Page:https://reactgrid.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error when displaying multiple rows

lamdev03 opened this issue · comments

Describe the bug
error when displaying multiple rows
image

Current behavior
With tables with short rows, it's fine, but with many rows, I often lose the following rows.
But when I zoom out my screen more rows are displayed.
image

Expected behavior
I want to be able to see all my rows no matter what screen I'm on

Screenshots or gifs
Here is my code
image

Your environment details

  • Device: [desktop]
  • Browser [chrome]

It seems to be a virtualization problem. It's not the best solution, but you can try adding the disableVirtualScrolling flag/property to the ReactGrid component and tell me if it made a difference.

Thank you, after adding it it was able to display all the rows.

Good; just remember that this change might introduce some performance problems if a lot of data is passed to the ReactGrid component.