Hi Handsontable team,
I would like to load the data after the table has been rendered. I’m using Next.js and importing the table using lazy loading and with ssr false.
const Sheet = dynamic(() => import('./components/Sheet'), {
ssr: false,
loading: () => <Loader dataTestId="loader" />,
});
I tried using the afterRender
but it just keeps emitting events and makes the browser hangs.
Is there any other hook I can use to make sure that the table is ready before loading the data using loadData
?
Thanks.