Hi,
My current scenario is that I’m planning to set rowHeaders
to false
and create a separate table for the row headers. The reason is that I want to optimize the app. Coz inside the row header is where most of the heavy-lifting is done.
I have a demo here, this is the best I can do for now: https://stackblitz.com/edit/mc-react-hot-optim-trial
I think we can create a separate table, but the problem would be the sync scrolling. If you scroll on the new table of the demo it is scrolling synchronously. But I’m aware that handsontable is not scrolling until the bottom part. And if I scroll inside handsontable, the the other table won’t scroll.
Goal:
- Create a separate table for row header.
- Make them look as one (achievable through CSS, but not yet implemented in the demo)
- Synchronize the scrolling (meaning if user scroll on the handsontable the other table should scroll as well, vice versa)
Is this possible at all? Thank you!