@acorex/platform 21.0.0-next.20 → 21.0.0-next.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -11145,25 +11145,27 @@ class AXPEntityListWidgetViewComponent extends AXPValueWidgetComponent {
|
|
|
11145
11145
|
};
|
|
11146
11146
|
const listOptions = await this.entityListTableService.convertEntityToListOptions(resolvedEntity, options, this.allActions());
|
|
11147
11147
|
const toolbarOptions = await this.entityListToolbarService.convertEntityToolbarOptions(resolvedEntity, options);
|
|
11148
|
-
|
|
11149
|
-
|
|
11150
|
-
|
|
11151
|
-
|
|
11152
|
-
|
|
11153
|
-
|
|
11154
|
-
|
|
11155
|
-
|
|
11156
|
-
|
|
11157
|
-
|
|
11158
|
-
|
|
11159
|
-
|
|
11160
|
-
|
|
11161
|
-
|
|
11162
|
-
|
|
11163
|
-
|
|
11164
|
-
|
|
11165
|
-
|
|
11166
|
-
|
|
11148
|
+
setTimeout(() => {
|
|
11149
|
+
this.listNode.set({
|
|
11150
|
+
type: AXPWidgetsCatalog.dataList,
|
|
11151
|
+
options: listOptions,
|
|
11152
|
+
path: `table`,
|
|
11153
|
+
name: 'table',
|
|
11154
|
+
mode: 'view',
|
|
11155
|
+
defaultValue: this.getValue()?.table,
|
|
11156
|
+
});
|
|
11157
|
+
this.toolbarNode.set({
|
|
11158
|
+
type: AXPWidgetsCatalog.listToolbar,
|
|
11159
|
+
path: `toolbar`,
|
|
11160
|
+
options: toolbarOptions,
|
|
11161
|
+
mode: 'view',
|
|
11162
|
+
defaultValue: {
|
|
11163
|
+
filters: this.getValue()?.toolbar?.filters,
|
|
11164
|
+
sorts: this.getValue()?.toolbar?.sorts,
|
|
11165
|
+
columns: this.getValue()?.toolbar?.columns,
|
|
11166
|
+
},
|
|
11167
|
+
});
|
|
11168
|
+
}, 100);
|
|
11167
11169
|
}
|
|
11168
11170
|
async ngAfterViewInit() {
|
|
11169
11171
|
this.workflow.events$
|