From 35afc372abbef6651f6e81dbdc3ef8d13bb631e2 Mon Sep 17 00:00:00 2001 From: Kartik Luke Singh Date: Tue, 17 Apr 2018 12:39:09 +0530 Subject: [PATCH] Adding note on `forceUpdateGrids` for `MultiGrid` In the Pure Components section of the README (https://github.com/bvaughn/react-virtualized#pure-components). There isn't info on the `MultiGrid`. Got confused when `forceUpdate` didn't work. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f89dec767..cf6ec6210 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ For example: ###### Public methods `Grid` and `Collection` components can be forcefully re-rendered using [`forceUpdate`](https://facebook.github.io/react/docs/component-api.html#forceupdate). -For `Table` and `List`, you'll need to call [`forceUpdateGrid`](https://github.com/bvaughn/react-virtualized/blob/master/docs/Table.md#forceupdategrid) to ensure that the inner `Grid` is also updated. +For `Table` and `List`, you'll need to call [`forceUpdateGrid`](https://github.com/bvaughn/react-virtualized/blob/master/docs/Table.md#forceupdategrid) to ensure that the inner `Grid` is also updated. For `MultiGrid`, you'll need to call [`forceUpdateGrids`](https://github.com/bvaughn/react-virtualized/blob/master/docs/MultiGrid.md#forceupdategrids) to ensure that the inner `Grid`s are updated. Documentation ---------------