ninegrid2 6.410.0 → 6.411.0
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.
- package/dist/bundle.cjs.js +2 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/etc/ngView.js +2 -2
- package/package.json +1 -1
- package/src/etc/ngView.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -23564,9 +23564,9 @@ class ngView
|
|
|
23564
23564
|
//5. nodata resize
|
|
23565
23565
|
var h = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getTrHeight();
|
|
23566
23566
|
|
|
23567
|
-
console.log(this.#owner, this.#owner.dataManager.
|
|
23567
|
+
console.log(this.#owner, this.#owner.dataManager.rawRecords, this.#owner.getAttribute("display-row-count"));
|
|
23568
23568
|
if (this.#owner.getAttribute("display-row-count")) {
|
|
23569
|
-
if (this.#owner.dataManager.
|
|
23569
|
+
if (this.#owner.dataManager.rawRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
|
|
23570
23570
|
h = 0;
|
|
23571
23571
|
}
|
|
23572
23572
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -23562,9 +23562,9 @@ class ngView
|
|
|
23562
23562
|
//5. nodata resize
|
|
23563
23563
|
var h = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getTrHeight();
|
|
23564
23564
|
|
|
23565
|
-
console.log(this.#owner, this.#owner.dataManager.
|
|
23565
|
+
console.log(this.#owner, this.#owner.dataManager.rawRecords, this.#owner.getAttribute("display-row-count"));
|
|
23566
23566
|
if (this.#owner.getAttribute("display-row-count")) {
|
|
23567
|
-
if (this.#owner.dataManager.
|
|
23567
|
+
if (this.#owner.dataManager.rawRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
|
|
23568
23568
|
h = 0;
|
|
23569
23569
|
}
|
|
23570
23570
|
}
|
package/dist/etc/ngView.js
CHANGED
|
@@ -365,9 +365,9 @@ export class ngView
|
|
|
365
365
|
//5. nodata resize
|
|
366
366
|
var h = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getTrHeight();
|
|
367
367
|
|
|
368
|
-
console.log(this.#owner, this.#owner.dataManager.
|
|
368
|
+
console.log(this.#owner, this.#owner.dataManager.rawRecords, this.#owner.getAttribute("display-row-count"))
|
|
369
369
|
if (this.#owner.getAttribute("display-row-count")) {
|
|
370
|
-
if (this.#owner.dataManager.
|
|
370
|
+
if (this.#owner.dataManager.rawRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
|
|
371
371
|
h = 0;
|
|
372
372
|
}
|
|
373
373
|
}
|
package/package.json
CHANGED
package/src/etc/ngView.js
CHANGED
|
@@ -365,9 +365,9 @@ export class ngView
|
|
|
365
365
|
//5. nodata resize
|
|
366
366
|
var h = this.#height.body - this.#height.thead - this.#height.tfoot - this.#getTrHeight();
|
|
367
367
|
|
|
368
|
-
console.log(this.#owner, this.#owner.dataManager.
|
|
368
|
+
console.log(this.#owner, this.#owner.dataManager.rawRecords, this.#owner.getAttribute("display-row-count"))
|
|
369
369
|
if (this.#owner.getAttribute("display-row-count")) {
|
|
370
|
-
if (this.#owner.dataManager.
|
|
370
|
+
if (this.#owner.dataManager.rawRecords.length >= Number(this.#owner.getAttribute("display-row-count") || 0)) {
|
|
371
371
|
h = 0;
|
|
372
372
|
}
|
|
373
373
|
}
|