Skip to content

Commit

Permalink
Merge branch 'feat/infinite-tree' into alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Sep 23, 2024
2 parents a3f3f67 + a5ae697 commit 90c9703
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/InfiniteTable/InfiniteTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -442,17 +442,17 @@ const InfiniteTableComp = forwardRef<InfiniteTableRef, InfiniteTableProps>(
getRowStyle={onRowStyle}
suppressCellFocus={true}
suppressRowClickSelection={true}
rowBuffer={10}
rowBuffer={5}
rowSelection={"multiple"}
onDragStopped={onColumnMoved}
onColumnResized={onColumnResized}
rowModelType={"infinite"}
cacheBlockSize={200}
cacheBlockSize={30}
onSelectionChanged={onSelectionChanged}
cacheOverflowSize={2}
maxConcurrentDatasourceRequests={1}
infiniteInitialRowCount={50}
maxBlocksInCache={10}
infiniteInitialRowCount={20}
// maxBlocksInCache={10}
onGridReady={onGridReady}
onBodyScroll={debouncedOnBodyScroll}
blockLoadDebounceMillis={DEBOUNCE_TIME}
Expand Down

0 comments on commit 90c9703

Please sign in to comment.