CellMeasurer compatibility
({columnIndex, rowIndex}: CellPosition)
| 134 | |
| 135 | /** CellMeasurer compatibility */ |
| 136 | invalidateCellSizeAfterRender({columnIndex, rowIndex}: CellPosition) { |
| 137 | if (this.Grid) { |
| 138 | this.Grid.invalidateCellSizeAfterRender({ |
| 139 | rowIndex, |
| 140 | columnIndex, |
| 141 | }); |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | /** See Grid#measureAllCells */ |
| 146 | measureAllRows() { |
no outgoing calls
no test coverage detected