You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using AgGrid component with columnSize="autoSize" configuration.
When the data filter value is changed, the grid column widths are calculated based on the previous instead on the latest rowData.
It seems like the DashAgGrid.updateColumnWidths() (and the inner gridApi.autoSizeAllColumns(skipHeader)) are called before the most recent rowData is set.
Expected behavior would be that the column widths are always aligned with the latest rowData.
How to Reproduce
Package version: dash-ag-grid==31.2.0
After running the code below, adjust the range slide filter as it's showed in the screen recoding (video below the code section):
Description
I'm using AgGrid component with
columnSize="autoSize"configuration.When the data filter value is changed, the grid column widths are calculated based on the previous instead on the latest
rowData.It seems like the
DashAgGrid.updateColumnWidths()(and the innergridApi.autoSizeAllColumns(skipHeader)) are called before the most recentrowDatais set.Expected behavior would be that the column widths are always aligned with the latest
rowData.How to Reproduce
Package version:
dash-ag-grid==31.2.0After running the code below, adjust the range slide filter as it's showed in the screen recoding (video below the code section):
columSizeBug.mov