This commit is contained in:
Jan Prochazka
2020-11-26 14:23:31 +01:00
parent c96cb08cfd
commit 06e98cff9f
6 changed files with 7 additions and 9 deletions

View File

@@ -424,6 +424,7 @@ export abstract class GridDisplay {
}
getPageQuery(offset: number, count: number) {
if (!this.driver) return null;
const select = this.createSelect();
if (!select) return null;
if (this.driver.dialect.rangeSelect) select.range = { offset: offset, limit: count };