child table icons

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
SkayyHH
Veteran Member
Posts: 425
Joined: 2015-04-27 21:18

child table icons

Post by SkayyHH » 2022-05-07 05:27

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!

SkayyHH
Veteran Member
Posts: 425
Joined: 2015-04-27 21:18

Re: child table icons

Post by SkayyHH » 2022-05-09 21:57

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>

Post Reply