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
In CellMeasurer.DynamiWidthMultiGrid.example.js the outer Multigrid and the the four inner Grids are accessing the CellMeasurerCache using different indices.
CellMeasurer in CellMeasurer.DynamiWidthMultiGrid.example.js and _columnWidthRightGrid in the Multigrid are accessing the CellMeasurerCache using "global" indices (rowIndex + fixedRowCount and columnIndex + fixedColumnCount) e.g.:
Instead of checking rowIndex, columnIndex we should use:
in TopRightGrid rowIndex, columnIndex + fixedColumnCount
in BottomLeftGrid rowIndex + fixedRowCount, columnCount
in BottomRightGrid rowIndex + fixedRowCount, columnIndex + fixedColumnCount
The text was updated successfully, but these errors were encountered:
In
CellMeasurer.DynamiWidthMultiGrid.example.js
the outer Multigrid and the the four inner Grids are accessing the CellMeasurerCache using different indices.CellMeasurer
inCellMeasurer.DynamiWidthMultiGrid.example.js
and_columnWidthRightGrid
in the Multigrid are accessing the CellMeasurerCache using "global" indices (rowIndex + fixedRowCount
andcolumnIndex + fixedColumnCount
) e.g.:In the four inner Grids of the Multigrid the
defaultCellRangeRenderer
is accessed by using "local" indices e.g.:Instead of checking
rowIndex, columnIndex
we should use:in TopRightGrid
rowIndex, columnIndex + fixedColumnCount
in BottomLeftGrid
rowIndex + fixedRowCount, columnCount
in BottomRightGrid
rowIndex + fixedRowCount, columnIndex + fixedColumnCount
The text was updated successfully, but these errors were encountered: