1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-27 06:04:54 +01:00

Bugfix formattazione numeri con decimali al salvataggio con "Invio"

This commit is contained in:
Fabio Lovato 2019-01-08 11:15:58 +01:00
parent c3177ae752
commit 9c5b3ecf67

View File

@ -56,4 +56,11 @@ $(document).ready(function () {
}, 350);
});
// Forza l'evento "blur" nei campi di testo per formattare i numeri con
// jquery inputmask prima del submit
setTimeout( function(){
$('form').on('submit', function(){
$('input').trigger('blur');
});
}, 1000 );
});