Data disappear if i focus on something else then the table

Tags: #<Tag:0x00007f8b285b1638>

I’m using the hook ''BeforeChangeRender" to render the changes of a formula on the table.
data%20with%20data
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%20without%20data

Hi @matheusgmaciel

please provide the current logic of the mentioned hook.

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)?