mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Fix campi disabilitati in fase di aggiunta prima nota
This commit is contained in:
@@ -312,7 +312,7 @@ $(document).on("keyup change", "input[id*=dare]", function() {
|
||||
let row = $(this).parent().parent();
|
||||
|
||||
if (!$(this).prop("disabled")) {
|
||||
row.find("input[id*=avere]").prop("disabled", !!$(this).val());
|
||||
row.find("input[id*=avere]").prop("disabled", $(this).val().toEnglish());
|
||||
|
||||
controllaConti();
|
||||
}
|
||||
@@ -322,7 +322,7 @@ $(document).on("keyup change", "input[id*=avere]", function() {
|
||||
let row = $(this).parent().parent();
|
||||
|
||||
if (!$(this).prop("disabled")) {
|
||||
row.find("input[id*=dare]").prop("disabled", !!$(this).val());
|
||||
row.find("input[id*=dare]").prop("disabled", $(this).val().toEnglish());
|
||||
|
||||
controllaConti();
|
||||
}
|
||||
|
Reference in New Issue
Block a user