perspective cache - basic design

This commit is contained in:
Jan Prochazka
2022-07-21 15:43:17 +02:00
parent 0f6ec420d2
commit d71294621b
10 changed files with 218 additions and 66 deletions

View File

@@ -24,7 +24,10 @@
const loadChildNodes = [];
const loadChildRows = [];
const loadProps = node.getNodeLoadProps(parentRows);
const { rows, incomplete } = await node.dataProvider.loadData(loadProps);
const { rows, incomplete } = await node.dataProvider.loadData({
...loadProps,
topCount: 100,
});
// console.log('ROWS', rows, node.isRoot);
if (node.isRoot) {