Page 1 of 1

child table icons

Posted: 2022-05-07 05:27
by SkayyHH
In appgini 22.13 the icons of the children buttons have changed on details page.
> UI: show specific table icon rather than a generic one in child table links on top of DV.

Before 22.13 the icon was "glyphicon glyphicon-list-alt".

Does anyone know how I can get the glyph icons back there?

Thanks very much!

Re: child table icons

Posted: 2022-05-09 21:57
by SkayyHH
For those who need this too:

You can add this to hooks/footer-extras.php:

Code: Select all

<script>
  $j(function() {
    $j('<i class="glyphicon glyphicon-list-alt"></i>').prependTo('.children-links a');
    $j('.children-links a > img').remove()
  })
</script>