我正在关注此页面上发布的教程和来源:https ://www.ag-grid.com/javascript-grid-virtual-paging/index.php
在我的组件中,我有相关的代码:
class PortsGrid extends React.Component {
constructor(props) {
console.log("PortsGrid - constructor");
super(props);
this.gridOptions = {
rowModelType: 'virtual',
// other options ...
}
}
onGridReady(
this.api = params.api;
this.columnApi = params.columnApi;
this.api.setDatasource(this._createDatasource());
}
在getRows(params)
我调用的方法的数据源中params.successCallback()
。然后这些行在网格中可见,但无论我如何滚动getRows
都不会再次调用。
我错过了什么?