Tooltips Index Page - switch off?

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
User avatar
ronwill
Veteran Member
Posts: 228
Joined: 2015-08-08 10:12
Location: Cheltenham UK +Weatherford USA

Tooltips Index Page - switch off?

Post by ronwill » 2018-04-29 11:18

I there easy way to stop tooltips on hover on main table headers, index page?
I have a few menu items displaying lot of text and tooltip is annoying, gets in the way.

Cheers, Ron
Ron - Gloucestershire, UK: AppGini Pro V 23.15 Rev 1484 - LOVING IT!
Plugins: Mass Update + Search Page Maker + Summary Reports + Calendar + Messages
Bizzworxx: AppGiniHelper + Inline Detail View
Alejandro Landini: To-Do List + MPI + TV Field Editor
Other: Udemy Course

pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1635
Joined: 2018-04-01 10:12

Re: Tooltips Index Page - switch off?

Post by pbottcher » 2018-05-01 20:59

Hi Ronwill,

where do you have tooltips? I can't see them. Maybe you can post a screenshot.
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.

R Tammam
Veteran Member
Posts: 113
Joined: 2017-08-26 15:35

Re: Tooltips Index Page - switch off?

Post by R Tammam » 2018-05-02 23:23

Hello pböttcher ,
check the following link for more visualization of tool tips
https://www.screencast.com/t/D0f1GIzjdj

R Tammam
Veteran Member
Posts: 113
Joined: 2017-08-26 15:35

Re: Tooltips Index Page - switch off?

Post by R Tammam » 2018-05-02 23:31

Hello ronwill,
if you inspected the table button you will find a title attribute with the tooltip
and here's an example
https://www.screencast.com/t/NTPKGWFwkZ48
so to stop them using javascript in footer extras
you should select the button , and remove the title attribute using .removeAttr() function
for more about .removeAttr() function please check this link https://api.jquery.com/removeAttr/

User avatar
ronwill
Veteran Member
Posts: 228
Joined: 2015-08-08 10:12
Location: Cheltenham UK +Weatherford USA

Re: Tooltips Index Page - switch off?

Post by ronwill » 2018-05-03 03:37

Hi Tammam,
Thks for that and showing me where to look. I'll give it a go, meanwhile I found by removing the word Description (on line starting: <a class="btn btn-block btn-lg <?php) so that - (strip_tags($tc['Description']))) is now (strip_tags($tc['']))) it has the desired effect of not showing tool tips on the home page menu buttons. To stop homp.php being overwritten I set it as read only, if I make other changes that might impact home.php I just remove read only, publish & compare file against copy I save in other directory, adjust and reset read only.
Cheers, Ron
Ron - Gloucestershire, UK: AppGini Pro V 23.15 Rev 1484 - LOVING IT!
Plugins: Mass Update + Search Page Maker + Summary Reports + Calendar + Messages
Bizzworxx: AppGiniHelper + Inline Detail View
Alejandro Landini: To-Do List + MPI + TV Field Editor
Other: Udemy Course

R Tammam
Veteran Member
Posts: 113
Joined: 2017-08-26 15:35

Re: Tooltips Index Page - switch off?

Post by R Tammam » 2018-05-05 22:19

Well done ronwill

Post Reply