select page by row_number for MS SQL 2008 #93

This commit is contained in:
Jan Prochazka
2021-04-25 11:48:23 +02:00
parent 8ff706a17f
commit 67e1913683
13 changed files with 178 additions and 45 deletions

View File

@@ -29,9 +29,10 @@ export class TableFormViewDisplay extends FormViewDisplay {
cache: GridCache,
setCache: ChangeCacheFunc,
dbinfo: DatabaseInfo,
displayOptions
displayOptions,
serverVersion
) {
super(config, setConfig, cache, setCache, driver, dbinfo);
super(config, setConfig, cache, setCache, driver, dbinfo, serverVersion);
this.gridDisplay = new TableGridDisplay(
tableName,
driver,
@@ -40,7 +41,8 @@ export class TableFormViewDisplay extends FormViewDisplay {
cache,
setCache,
dbinfo,
displayOptions
displayOptions,
serverVersion
);
this.gridDisplay.addAllExpandedColumnsToSelected = true;