coer-elements 1.1.25 → 1.1.26
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.
@@ -1657,7 +1657,6 @@ class CoerGridExtension extends ControlValue {
|
|
1657
1657
|
this.value_signal = signal([]);
|
1658
1658
|
this._gridSearch = signal('');
|
1659
1659
|
this._isLoading = signal(true);
|
1660
|
-
//protected _isLoadingS = signal<boolean>(false);
|
1661
1660
|
this._isLoadingMessage = true;
|
1662
1661
|
this._id = Tools.GetGuid('coer-grid');
|
1663
1662
|
this._expandedGroups = [];
|
@@ -2543,7 +2542,7 @@ class CoerGrid extends CoerGridExtension {
|
|
2543
2542
|
}
|
2544
2543
|
/** */
|
2545
2544
|
ClickCheck(id, checked, all, row = null) {
|
2546
|
-
if (!this._isLoading)
|
2545
|
+
if (!this._isLoading())
|
2547
2546
|
Tools.Sleep().then(async (_) => {
|
2548
2547
|
this._isLoading.set(true);
|
2549
2548
|
let element = this.coerCheckboxList().find(x => x.id() == id);
|