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:
parent
6a3035de18
commit
24021354dc
@ -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>
|
Loading…
Reference in New Issue
Block a user