Table View Title - Link removal?

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
User avatar
ronwill
Veteran Member
Posts: 228
Joined: 2015-08-08 10:12
Location: Cheltenham UK +Weatherford USA

Table View Title - Link removal?

Post by ronwill » 2016-06-21 12:28

Is there any way, method for a non coder like myself (so if coding needed need detailed help!), to remove the Link (refresh table - tablename_view.php) off the TABLE VIEW TITLE so it does nothing (make it a dead or non existing link, I don't need it to do anything, no redirect, no refresh, but just act as a title)?

It undermines the integrity, function of an application I'm working on. I have a detailed scenario explaining my project and how the refresh link on the tableviewtitle causes me problems that I will post if the above is not possible so another solution can be found/requested.

Cheers, for any help on offer.
Ron - AppGini Pro V5.50 Rev 835
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

DevGiu
AppGini Super Hero
AppGini Super Hero
Posts: 151
Joined: 2016-05-27 09:08

Re: Table View Title - Link removal?

Post by DevGiu » 2016-06-22 07:05

Not sure if it's the best way, but this works:

hooks/footer-extras.php

Code: Select all

<script>
$j(function(){
	$j('.page-header > h1').find('a').contents().unwrap()	;
})
</script>
/Giuseppe
Professional Outsourcing Services

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

Re: Table View Title - Link removal?

Post by ronwill » 2016-06-22 21:25

Thanks for the response, I'll give it a go and let you know if it works for me
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

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

Re: Table View Title - Link removal?

Post by ronwill » 2016-06-24 12:37

Thanks, it worked just as needed, allows me to continue with my project and come back to this part at a later time when I have more knowledge/skills on multi filtering, look-ups, relationships etc.
Cheers,
Ron - AppGini Pro V5.50 Rev 835
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

User avatar
aarlauskas
Veteran Member
Posts: 127
Joined: 2019-04-28 18:03
Location: Medway, UK

Re: Table View Title - Link removal?

Post by aarlauskas » 2020-03-08 13:32

Hi, found this and the only code that works. Question: is there a way to remove this link for a specific table? hooks/footer-extras.php removes the link on all tables. Thanks

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

Re: Table View Title - Link removal?

Post by pbottcher » 2020-03-08 14:15

Hi,

just add the code to the hooks/TABLENAME-tv.js file for the TABLENAME needed.
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.

User avatar
aarlauskas
Veteran Member
Posts: 127
Joined: 2019-04-28 18:03
Location: Medway, UK

Re: Table View Title - Link removal?

Post by aarlauskas » 2020-03-08 14:57

Of course! Thanks Pascal. I tried to close the code with <script><script> as in footer-extras.php which obviously didn't work.. All fine now, Thanks again! :)

Post Reply