Masquer le tri dans la colonne du bouton en test
This commit is contained in:
parent
b073cf6aae
commit
6b840ecaa9
@ -788,7 +788,6 @@ class course extends common
|
||||
$count = 0;
|
||||
foreach ($array as $key => $value) {
|
||||
$count++; // Incrémente le compteur pour chaque clé associative trouvée
|
||||
|
||||
if (is_array($value)) {
|
||||
$count += $this->countPages($value); // Appelle récursivement la fonction si la valeur est un tableau
|
||||
}
|
||||
|
@ -30,7 +30,14 @@ $(document).ready((function () {
|
||||
|
||||
$('#dataTables').DataTable({
|
||||
language: {
|
||||
url: "core/vendor/datatables/french.json"}
|
||||
url: "core/vendor/datatables/french.json"
|
||||
},
|
||||
"columnDefs": [
|
||||
{
|
||||
target: 5,
|
||||
searchable: false
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
}));
|
@ -18,7 +18,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<?php echo template::formOpen('courseFilterUserForm'); ?>
|
||||
<div class="row">
|
||||
<div class="row" id="Bfrtip">
|
||||
<div class="col3">
|
||||
<?php echo template::select('courseFilterGroup', $module::$courseGroups, [
|
||||
'label' => 'Groupes / Profils',
|
||||
|
Loading…
Reference in New Issue
Block a user