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
Copy file name to clipboardExpand all lines: docs/Grid.md
+1
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,7 @@ A windowed grid of elements. `Grid` only renders cells necessary to fill itself
23
23
| height | Number | ✓ | Height of Grid; this property determines the number of visible (vs virtualized) rows. |
24
24
| id | String || Optional custom id to attach to root `Grid` element. |
25
25
| isScrolling | Boolean || Override internal is-scrolling state tracking. This property is primarily intended for use with the WindowScroller component. |
26
+
| isScrollingOptOut | Boolean || Prevents re-rendering of visible cells on scroll end. |
26
27
| noContentRenderer | Function || Optional renderer to be rendered inside the grid when either `rowCount` or `columnCount` is empty: `(): PropTypes.node`|
27
28
| onSectionRendered | Function || Callback invoked with information about the section of the Grid that was just rendered. This callback is only invoked when visible rows have changed: `({ columnOverscanStartIndex: number, columnOverscanStopIndex: number, columnStartIndex: number, columnStopIndex: number, rowOverscanStartIndex: number, rowOverscanStopIndex: number, rowStartIndex: number, rowStopIndex: number }): void`|
28
29
| onScroll | Function || Callback invoked whenever the scroll offset changes within the inner scrollable region: `({ clientHeight: number, clientWidth: number, scrollHeight: number, scrollLeft: number, scrollTop: number, scrollWidth: number }): void`|
0 commit comments