This commit is contained in:
Jan Prochazka
2020-10-02 13:51:56 +02:00
parent 73b5b86ace
commit c13f8b4786
3 changed files with 37 additions and 1 deletions

View File

@@ -287,6 +287,17 @@ export abstract class GridDisplay {
this.reload();
}
setFilters(dct) {
this.setConfig((cfg) => ({
...cfg,
filters: {
...cfg.filters,
...dct,
},
}));
this.reload();
}
setSort(uniqueName, order) {
this.setConfig((cfg) => ({
...cfg,