This commit is contained in:
KONE SOREL 2026-03-13 17:52:07 +00:00
parent 47de7d5238
commit 51843c5079
2 changed files with 2 additions and 2 deletions

View File

@ -48291,7 +48291,7 @@ function filtreTableReference(numeroTable){
// alert("Success : "+data);
$("#div_listetables").html(data);
$("#listetables").selectpicker();
$("#listetables").focus();
},
complete: function() {

View File

@ -27,7 +27,7 @@
[1 => 'Générale', 2 => 'Production', 3 => 'Médical et Sinistre', 5 => 'Comptabilité'];
foreach($modules as $val => $libelle): ?>
<input type="radio" class="btn-check" name="numeroTable" id="btnTable<?= $val ?>" value="<?= $val ?>" <?= $val == 1 ? 'checked' : '' ?> autocomplete="off" onClick="filtreTableReference(this.value);">
<input type="radio" class="btn-check" name="numeroTable" id="btnTable<?= $val ?>" value="<?= $val ?>" <?= $val == 1 ? 'checked' : '' ?> onClick="filtreTableReference(this.value);">
<label class="btn btn-outline-primary py-2 fw-medium" for="btnTable<?= $val ?>"><?= $libelle ?></label>
<?php endforeach; ?>
</div>