osl-base-extended 2.0.16 → 2.0.19
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.
|
@@ -3439,7 +3439,11 @@ class OslSetup {
|
|
|
3439
3439
|
return [{ key: '__actions', label: '', isActions: true }, ...this.columns];
|
|
3440
3440
|
}
|
|
3441
3441
|
onPageChange(eventEmitter, event) {
|
|
3442
|
-
eventEmitter.emit({ ...event,
|
|
3442
|
+
eventEmitter.emit({ ...event, ...{
|
|
3443
|
+
searchValue: this.searchbar?.searchControl?.value,
|
|
3444
|
+
sortKey: this.gridRef?.sortKey,
|
|
3445
|
+
sortASC: this.gridRef?.sortAsc
|
|
3446
|
+
} });
|
|
3443
3447
|
}
|
|
3444
3448
|
// ── Dialog actions ────────────────────────────────────────────
|
|
3445
3449
|
openAddDialog() {
|