Always show help/description

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
meickert
Posts: 15
Joined: 2016-06-24 23:05

Always show help/description

Post by meickert » 2016-10-21 21:28

Hi guys,
I made a database with the mktabbed-View of the details page shown elsewhere here.... but thats not important i guess... so every page has only 2 or 3 fields in one tab. In Appgini every field has a descripton which is shown with an "i"-icon right beside the fields name. After a click on the "i" you can see this description... and now my question: could someone help me what has to be changed, that this desciption is always shown (and no click at the "i" is neccessary)?

Thanks a lot....
Marcus

P.S.: I'm using Appgini 5.51 Rev 905

Noha Eshra
Moderator
Posts: 82
Joined: 2013-11-11 19:21

Re: Always show help/description

Post by Noha Eshra » 2016-10-23 12:19

You should insert this code in hooks/footer-extras.php

Code: Select all

<script>
  $j(function(){
    $j('.help-block').css({ display: 'unset' });
  })
</script>

meickert
Posts: 15
Joined: 2016-06-24 23:05

Re: Always show help/description

Post by meickert » 2016-10-23 17:55

Noha Eshra wrote:You should insert this code in hooks/footer-extras.php

Code: Select all

<script>
  $j(function(){
    $j('.help-block').css({ display: 'unset' });
  })
</script>
Works perfect :) Thx a lot...

Noha Eshra
Moderator
Posts: 82
Joined: 2013-11-11 19:21

Re: Always show help/description

Post by Noha Eshra » 2016-10-23 19:32

You're most welcome :)

Post Reply