arraglando la tabla tarifas con la forma nueva

This commit is contained in:
Jaime Jimenez
2023-05-11 07:33:06 +02:00
parent ff9bf6a000
commit 3cbf5cf8a8
15 changed files with 819 additions and 177 deletions

View File

@ -108,4 +108,22 @@
</div><!-- //.card -->
</div><!--//.col -->
</div><!--//.row -->
<?= $this->endSection() ?>
<?= $this->section('additionalInlineJs') ?>
$('#select_all').on('click', function () {
$(':checkbox').each(function() {
this.checked = true;
});
});
$('#remove_all').on('click', function () {
$(':checkbox').each(function() {
this.checked = false;
});
});
<?= $this->endSection() ?>