Ag-Grid 无限滚动 paginationPageSize 在 reactjs 中不起作用
Ag-Grid infinite scrolling paginationPageSize not working in reactjs
我正在研究 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 示例我有 console.log(param) 对象,这里的 endRow 计数应该是 30,但显示的是 100。
package.json
"react": "^16.8.3",
"ag-grid-community": "^20.1.0",
"ag-grid-react": "^20.1.1",
您需要使用 cacheBlockSize
而不是 paginationPageSize
我正在研究 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 示例我有 console.log(param) 对象,这里的 endRow 计数应该是 30,但显示的是 100。
package.json
"react": "^16.8.3",
"ag-grid-community": "^20.1.0",
"ag-grid-react": "^20.1.1",
您需要使用 cacheBlockSize
而不是 paginationPageSize