* Forcefully re-render the inner Grid component. * * Calling `forceUpdate` on `Table` may not re-render the inner Grid since it uses `shallowCompare` as a performance optimization. * Use this method if you want to manually trigger a re-render. * This may be appropriate if the underlying
()
| 205 | * This may be appropriate if the underlying row data has changed but the row sizes themselves have not. |
| 206 | */ |
| 207 | forceUpdateTable() { |
| 208 | this.table && this.table.forceUpdateTable(); |
| 209 | this.leftTable && this.leftTable.forceUpdateTable(); |
| 210 | this.rightTable && this.rightTable.forceUpdateTable(); |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Reset cached offsets for positioning after a specific rowIndex, should be used only in dynamic mode(estimatedRowHeight is provided) |