mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-26 07:44:02 +01:00
Fix salvataggio impostazioni per campi di tipo time
This commit is contained in:
parent
961249c9b5
commit
d27aa9b048
@ -31,9 +31,27 @@ foreach ($impostazioni as $impostazione) {
|
||||
'.Settings::input($impostazione['id']).'
|
||||
</div>
|
||||
|
||||
<script>
|
||||
<script>';
|
||||
|
||||
if ($impostazione->tipo == 'time'){
|
||||
echo '
|
||||
input("setting['.$impostazione->id.']");
|
||||
$(document).on("blur", "#setting'.$impostazione->id.'", function (e) {
|
||||
salvaImpostazione('.$impostazione->id.', $("#setting'.$impostazione->id.'").val());
|
||||
});
|
||||
';
|
||||
|
||||
}
|
||||
else{
|
||||
|
||||
echo '
|
||||
|
||||
input("setting['.$impostazione->id.']").change(function (){
|
||||
salvaImpostazione('.$impostazione->id.', input(this).get());
|
||||
});
|
||||
});';
|
||||
|
||||
}
|
||||
|
||||
echo '
|
||||
</script>';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user