Fixed Generate Script

This commit is contained in:
2026-02-12 14:36:29 +00:00
parent 509cd9c332
commit 5de6b80794
13 changed files with 764 additions and 166 deletions

View File

@@ -8,4 +8,22 @@ function show_details(){
})
})
}
}
function aggiornaDati() {
fetch('/process/ajax-refresh.php')
.then(response => response.text())
.then(html => {
const container = document.getElementById('main-container');
if (container) {
container.innerHTML = html;
// Se hai funzioni tipo show_details()
if (typeof show_details === "function") {
show_details();
}
}
})
.catch(error => console.error('Errore AJAX:', error));
}