Page 1 of 1

Always show help/description

Posted: 2016-10-21 21:28
by meickert
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

Re: Always show help/description

Posted: 2016-10-23 12:19
by Noha Eshra
You should insert this code in hooks/footer-extras.php

Code: Select all

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

Re: Always show help/description

Posted: 2016-10-23 17:55
by meickert
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...

Re: Always show help/description

Posted: 2016-10-23 19:32
by Noha Eshra
You're most welcome :)