1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Aggiunto pulsante Salva e chiudi per ritornare all'elenco del modulo

This commit is contained in:
Dasc3er
2021-03-15 11:10:46 +01:00
parent 6deca4bd9b
commit a07234ec4b
7 changed files with 32 additions and 12 deletions

View File

@@ -151,10 +151,13 @@ $(document).ready(function() {';
}
echo '
$("#save").html("<i class=\"fa fa-flag-checkered\"></i> '.tr('Avvia importazione').'");
$("#save-buttons").find(".dropdown-menu, .dropdown-toggle").remove();
$("#save").unbind("click");
$("#save").on("click", function() {
var save = $("#save");
save.html("<i class=\"fa fa-flag-checkered\"></i> '.tr('Avvia importazione').'");
save.unbind("click");
save.on("click", function() {
count = 0;
importPage(0);
});