add generic table

This commit is contained in:
Roland Schneider
2025-11-19 22:48:18 +01:00
parent 1bfa4dec47
commit ec44849b31
6 changed files with 171 additions and 5 deletions

View File

@@ -88,4 +88,9 @@ export class GenericTable<T> implements OnInit {
this.config.page$.next(1);
this.config.filter$.next(searchTerm);
}
protected onPageSizeChange(value: any) {
this.config.page$.next(1);
this.config.limit$.next(+value);
}
}