Inicio servicios para presupuestos

This commit is contained in:
imnavajas
2023-10-01 22:13:33 +02:00
parent 84d2006313
commit 1bccbb1e21
16 changed files with 751 additions and 5 deletions

View File

@ -175,6 +175,12 @@
$(this).find('.btn-confirm').attr('href', $(e.relatedTarget).data('href'));
});
$('#confirm2delete').keypress(function(e) { // Attach the form handler to the keypress event
if (e.keyCode == 13) { // If the the enter key was pressed.
$('#confirmDelete').click(); // Trigger the button(elementId) click event.
}
});
function toggleAllCheckboxes($cssClass, $io=null) {
$('.'+$cssClass).prop('checked', $io);
}