fixed dirty rows

This commit is contained in:
2026-07-17 11:01:51 +02:00
parent 1107e003f8
commit 232f8244bf
+5
View File
@@ -968,6 +968,11 @@
if (!row) return;
// Salta le righe nascoste (filtrate / non nella selezione ristretta):
// non devono essere sincronizzate né marcate dirty.
const rowEl = cell.closest(".grid-row");
if (rowEl && rowEl.style.display === "none") return;
const colType = cell.dataset.colType;
const colKey = cell.dataset.col;
const input = cell.querySelector(".cell-input");