Table not fully rendered until click

Some columns are not rendered before any clicks on the table.

I suppose this is because of wtHeader styles.

What is the possible reason for that?

Thaks in advance

Hi @maryja.radziuk

try to load the table after a small delay, let’s say 10ms.

@aleksandra_budnik
what does Load mean?

@maryja.radziuk initialize the table. I have seen a similar issue where the table did not know the container size so it has been loading in the minimum width (like in your screen).
You can just initialize it in the setTimeout() function with 10ms delay when the user clicks the tab.

This happens sometimes to us as well. Typically its when you create the HOT object before the HOT is full displayed (like in a modal or tab layout). I typically use setTimeout(function(){ hot.render(); },100); after the tab or modal is displayed.

Thank you for the input @ryan.reed
It’s still a bug but fortunately, we have a solid workaround.