I’m using the hook ''BeforeChangeRender" to render the changes of a formula on the table.
But after changes happen at the table, when i change the mouse focus off the table all Data disappear and it stays like this
Data disappear if i focus on something else then the table
Hey @aleksandra_budnik - sorry for the late reply
i’m using Angular 10.here’s the logic that i’m using at the project
this.hottableInstance = this.hotRegisterer.getInstance(this.id);
this.hottableInstance.addHook('beforeChangeRender', (changes) => {
if (changes) {
console.log('CHANGES', changes);
}
}
Within that code, I can only see a log
about the changes. So it seems that the error is related to one of those mechanisms related to the data change or any cell dependencies in your table.
Could you share the rest of your code? (perfectly in JSFiddle or any other sandbox)?