fix: visualizzazione avviso uscita dalla pagina
This commit is contained in:
parent
1fedf27dcf
commit
3a3b28349d
|
@ -524,9 +524,6 @@ if ($read_only || !empty($block_edit)) {
|
|||
|
||||
var content_was_modified = false;
|
||||
|
||||
// Forzatura per annullare il cambio da eventi subito dopo il caricamento iniziale
|
||||
setTimeout(function() { content_was_modified = false; }, 1000);
|
||||
|
||||
// Controllo se digito qualche valore o cambio qualche select
|
||||
$(".content input, .content textarea, .content select").bind("change paste keyup", function(event) {
|
||||
if (event.keyCode >= 32) {
|
||||
|
|
|
@ -481,6 +481,7 @@ $(document).ready(function() {
|
|||
$("#barcode").focus();
|
||||
|
||||
caricaRighe(null);
|
||||
content_was_modified = false;
|
||||
});
|
||||
|
||||
$("#idanagrafica_c").change(function() {
|
||||
|
|
|
@ -597,6 +597,7 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
$("#barcode").focus();
|
||||
content_was_modified = false;
|
||||
});
|
||||
|
||||
$("#idanagrafica").change(function() {
|
||||
|
|
|
@ -1215,6 +1215,8 @@ if ($dir == 'entrata') {
|
|||
});
|
||||
|
||||
bolloAutomatico();
|
||||
content_was_modified = false;
|
||||
|
||||
});
|
||||
input("bollo_automatico").change(function () {
|
||||
bolloAutomatico();
|
||||
|
|
|
@ -566,6 +566,7 @@ echo '
|
|||
});
|
||||
|
||||
$("#barcode").focus();
|
||||
content_was_modified = false;
|
||||
});
|
||||
|
||||
var anagrafica = input("idanagrafica");
|
||||
|
|
|
@ -413,6 +413,7 @@ $(document).ready(function() {
|
|||
});
|
||||
|
||||
$("#barcode").focus();
|
||||
content_was_modified = false;
|
||||
});
|
||||
|
||||
async function salvaArticolo() {
|
||||
|
|
Loading…
Reference in New Issue