Antonio Beltran
Antonio Beltran
I just briefly looked over this code, not sure the full context on how this works: https://github.com/TanStack/table/blob/main/packages/table-core/src/features/ColumnSizing.ts#L235C26-L235C26 Could the logic here be changed to accommodate both full width and the...
> I just briefly looked over this code, not sure the full context on how this works: https://github.com/TanStack/table/blob/main/packages/table-core/src/features/ColumnSizing.ts#L235C26-L235C26 > > Could the logic here be changed to accommodate both full...
this worked for me: const getTableSize = () => { return Math.max(table.getCenterTotalSize(), tableContainerRef.current?.clientWidth ?? 0); }; return ( ... ColumnSizingState now returns correctly for me
Plus 1 on this. Following for updates