CellMeasurer compatibility
({columnIndex = 0, rowIndex = 0}: CellPosition = {})
| 303 | |
| 304 | /** CellMeasurer compatibility */ |
| 305 | recomputeGridSize({columnIndex = 0, rowIndex = 0}: CellPosition = {}) { |
| 306 | if (this.Grid) { |
| 307 | this.Grid.recomputeGridSize({ |
| 308 | rowIndex, |
| 309 | columnIndex, |
| 310 | }); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | /** See Grid#recomputeGridSize */ |
| 315 | recomputeRowHeights(index = 0) { |