ranjit redekar
ranjit redekar

Reputation: 937

Ag-Grid infinite scrolling paginationPageSize not working in reactjs

I am working on Ag-Grid infinite-scrolling and trying to change the page count from paginationPageSize=100 to paginationPageSize=30 but it's showing 100 rows per page not 30. check this Plunker example I have console.log(param) object here endRow count should be 30 but its shown 100.

package.json

"react": "^16.8.3",
"ag-grid-community": "^20.1.0",
"ag-grid-react": "^20.1.1",

Upvotes: 2

Views: 1182

Answers (1)

un.spike
un.spike

Reputation: 5113

You need to use cacheBlockSize instead of paginationPageSize

Upvotes: 2

Related Questions