Current path: home/webdevt/cryptoimpot.fr/module/Application/view/application/partial/ledgio/
?? Go up: /home/webdevt/cryptoimpot.fr/module/Application/view/application/partial
<?php $query = $queryOption; ?>
<thead style="background-color: #fff;">
<tr>
<?php foreach ($colTable as $col => $infos) : ?>
<th class="col text-center">
<?php echo $infos['label']; ?>
</th>
<?php /* Le champ ne peut pas être trié */ ?>
<?php endforeach ?>
</tr>
</thead>
<script>
$('.order-desc').children('i')
.css("visibility", "hidden");
$('.order').hover(function () {
$(this).children('i')
.toggleClass('fa-chevron-up')
.toggleClass('fa-chevron-down');
});
$('.order-desc').hover(
function () {
$(this).children('i')
.css("visibility", "visible");
},
function () {
$(this).children('i')
.css("visibility", "hidden");
});
</script>