In the latest version (7.5.x) of React-Table, is there a way to add the column resizing to a Material-UI table without breaking the 'Sticky Header' property of the Material-UI Table?
On one hand, adding 'useFlexLayout' or 'useBlockLayout' breaks the 'Sticky Header', on the other, column resizing isn't working without 'useFlexLayout' or 'useBlockLayout'...
In the codesandbox example, both useBlockLayout
& useResizeColumns
are set and the stickyHeader
is ignored. Once useBlockLayout
& useResizeColumns
are commented out, the stickyHeader
is working again.