Send denormalized data to backend in order to persist dashboard

This commit is contained in:
Stephen Abello
2026-01-13 11:17:54 +01:00
parent dd0ac58643
commit 7ca2c56dad
4 changed files with 31 additions and 8 deletions

View File

@@ -43,10 +43,10 @@ class IboGridSlot extends HTMLElement {
const oDashlet = this.oDashlet;
const aSlotData = {
x: this.iPosX,
y: this.iPostY,
w: this.iWidth,
h: this.iHeight
position_x: this.iPosX,
position_y: this.iPostY,
width: this.iWidth,
height: this.iHeight
};
const aDashletData = oDashlet ? oDashlet.Serialize() : {};