我将 ag-grid 与 rowModelType: 'infinite' 一起使用
当我请求排序、过滤或更改页面时,系统运行数据源的getRows
在运行 getRows 并停止执行之前,我需要检查排序请求(或过滤器)。
onSortChanged: () => {
if (something) {
// continue with sort and execute getRows ...
} else {
// stop with sort and NOT execute getRows...
}
};