3
0

Add record filter preset saving

This commit is contained in:
Kelani Tolulope
2023-05-24 13:00:51 +01:00
parent f09f1fa6d0
commit aa28be29cb
6 changed files with 269 additions and 39 deletions

View File

@@ -40,6 +40,7 @@ interface Options {
fullPageNavigation: boolean;
showTotalCount: boolean;
showDeletedRecordsOption: boolean;
customFilterPresets: boolean;
refreshRate: number;
showRefresh: boolean;
@@ -97,6 +98,7 @@ const defaults: Readonly<Options> = Object.freeze({
fullPageNavigation: false,
showTotalCount: false,
showDeletedRecordsOption: false,
customFilterPresets: false,
editable: false,
draggable: false,
@@ -164,6 +166,7 @@ export class PageBlockRecordList extends PageBlock {
'fullPageNavigation',
'showTotalCount',
'showDeletedRecordsOption',
'customFilterPresets',
'hideSorting',
'allowExport',
'selectable',