react-table and react-window column width behavior

I am making a virtualized table using react-table and react-window. Without using virtualization, the columns in the table are displayed evenly, the total width is normally calculated and so on. But with virtualized list I can't get the same result. Does anyone have any experience using these libraries in this case?

With virtualizarion enter image description here

With normal table enter image description here

Upvotes: 1

Views: 421

Answers (1)

mruanova
mruanova

Reputation: 7095

Yes, I had the exact same problem, ended up using CSS to customize each width on each column in the header and then on the rows.

Upvotes: 1

Related Questions