1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-22 21:28:08 +01:00

Sblocco campo giorni di preavviso alla spunta su "Rinnovabile"

This commit is contained in:
Fabio Lovato 2020-04-01 16:42:32 +02:00
parent 6a3035de18
commit 24021354dc

View File

@ -452,3 +452,14 @@ if (!empty($elementi)) {
<?php
}
?>
<script>
$('#rinnovabile').on('change', function(){
if ($(this).is(':checked')) {
$('#giorni_preavviso_rinnovo').prop('disabled', false);
} else {
$('#giorni_preavviso_rinnovo').prop('disabled', true);
}
});
</script>