data archive refresh works

This commit is contained in:
Jan Prochazka
2022-02-17 12:55:45 +01:00
parent d3fca75277
commit ca79db53ee
5 changed files with 31 additions and 3 deletions

View File

@@ -13,11 +13,13 @@ export class JslGridDisplay extends GridDisplay {
cache: GridCache,
setCache: ChangeCacheFunc,
rows: any,
isDynamicStructure: boolean
isDynamicStructure: boolean,
supportsReload: boolean
) {
super(config, setConfig, cache, setCache, null);
this.filterable = true;
this.supportsReload = supportsReload;
this.isDynamicStructure = isDynamicStructure;
if (isDynamicStructure) this.filterTypeOverride = 'string';