Я хочу пересчитать правильно выбранные строки при смене фильтра.
// на стороне сервера выбрать все
selectAllRows(e) {
const firstRow = this.gridApi.getFirstDisplayedRow();
const lastRow = this.gridApi.getLastDisplayedRow();
if(e.checked) {
for (let idx = firstRow; idx <= lastRow; idx++) {
this.gridApi.getDisplayedRowAtIndex(idx).setSelected(true);
// this.gridApi.selectIndex(idx, true);
}
// this.gridApi.selectionController.selectAllRowNodes(true);
} else {
this.gridOptions.api.deselectAll();
}
}