@nettyapps/ntybase 21.1.0 → 21.1.2

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.
@@ -1976,7 +1976,10 @@ class NettyAgGridListBase extends NettyAgGridBase {
1976
1976
  }
1977
1977
  if (this.hasValidValue(this.parameterGUID())) {
1978
1978
  this.setFilter();
1979
- this.loadData();
1979
+ if (this._isEmbedded()) {
1980
+ this.loadData();
1981
+ }
1982
+ //this.loadData();
1980
1983
  }
1981
1984
  else {
1982
1985
  // Clear right side nav if parameterGUID is not provided
@@ -2264,9 +2267,6 @@ class NettyAgGridSaveBase extends NettyAppsBase {
2264
2267
  this.loadDetailData();
2265
2268
  });
2266
2269
  }
2267
- async ngOnInit() {
2268
- this.loadDetailData();
2269
- }
2270
2270
  // Controls the visibility of additional editable fields (e.g., password, extra settings)
2271
2271
  // When true, certain input fields become visible for editing
2272
2272
  updateValid = signal(false, ...(ngDevMode ? [{ debugName: "updateValid" }] : []));