Hi there! I’m trying to create excel-like app in react (next.js) that handles thousands rows of data (in Sheet0) and calculate some formulas in another spreadsheet (Sheet1).
I’m also using Mantine (UI library) to render these spreadsheets in different tabs. Because of the performance issues I need to render both spreadsheets at the same time (one with display: none;) so the user can switch between tabs without any lag.
Issue: when changing to the tab with calculations (Sheet1) I get an error: Uncaught TypeError: Cannot read properties of null (reading ‘view’) (see the screenshot below)
another issue (I believe it is related to the first one): if you update a cell in Sheet0 and then switch to Sheet1 (with calculations) the calculated values aren’t updated, only when you switch back to Sheet0 and then to Sheet1 (second time) the values are updated; Is there a way to manually trigger handsontable render with hyperformula instance?