This commit is contained in:
2026-06-24 22:13:17 +00:00
parent ebfd6c80de
commit ed4925b621
2 changed files with 8 additions and 1 deletions

View File

@@ -3242,6 +3242,13 @@ function ajax_maj_qte_medicament(idMedicament, quantite, controle)
data: donnees,
success: function(data) {
$("#medicaments").html(data);
var input = document.getElementById("quantite" + idMedicament);
if (input) {
alert("O fait le focus");
input.focus();
input.select();
}
},
error: function(data) {
},