@nettyapps/ntybase 21.0.35-beta.4 → 21.0.35-beta.5

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.
@@ -1282,6 +1282,9 @@ class NettyAgGridBase extends NettyAppsBase {
1282
1282
  commonService = inject(CommonService);
1283
1283
  sysFunctionProxy = inject(SysfunctionProxy);
1284
1284
  environment = inject(EnvironmentProxy);
1285
+ // Button action management variables
1286
+ menuValid = signal(true, ...(ngDevMode ? [{ debugName: "menuValid" }] : [])); // true: Filter editbox is not visible so the menus are visible
1287
+ refreshButtonValid = signal(false, ...(ngDevMode ? [{ debugName: "refreshButtonValid" }] : [])); // true: Refresh button is enabled
1285
1288
  // Authentication
1286
1289
  authenticationList = [];
1287
1290
  // User access writes
@@ -1305,6 +1308,9 @@ class NettyAgGridBase extends NettyAppsBase {
1305
1308
  // *** METHODS ***
1306
1309
  // ***************************************************************
1307
1310
  popupClose() { this.selectedElement.emit(null); }
1311
+ onFilterTextBoxVisibilityChange(isOpen) {
1312
+ this.menuValid.set(!isOpen);
1313
+ }
1308
1314
  /** Set data into the grid */
1309
1315
  setData(data) {
1310
1316
  this.recordList.set(data);
@@ -1750,9 +1756,6 @@ class NettyAgGridListBase extends NettyAgGridBase {
1750
1756
  }
1751
1757
  return this.isFilterValid();
1752
1758
  }, ...(ngDevMode ? [{ debugName: "isFilterExpanded" }] : []));
1753
- // Button action management variables
1754
- menuValid = signal(true, ...(ngDevMode ? [{ debugName: "menuValid" }] : [])); // true: Filter editbox is not visible so the menus are visible
1755
- refreshButtonValid = signal(false, ...(ngDevMode ? [{ debugName: "refreshButtonValid" }] : [])); // true: Refresh button is enabled
1756
1759
  // Open component management
1757
1760
  openEditComponentInPopup = signal(false, ...(ngDevMode ? [{ debugName: "openEditComponentInPopup" }] : []));
1758
1761
  // Services
@@ -1964,9 +1967,6 @@ class NettyAgGridListBase extends NettyAgGridBase {
1964
1967
  }
1965
1968
  return true;
1966
1969
  }
1967
- onFilterTextBoxVisibilityChange(isOpen) {
1968
- this.menuValid.set(!isOpen);
1969
- }
1970
1970
  // *********************************************************
1971
1971
  // *** Data Management Functions ***
1972
1972
  // *********************************************************