kpcollier Posted April 7, 2022 Report Share Posted April 7, 2022 I have a tabular report that is using the details page section for downloading purposes only. I need to keep Details Page enabled, but I want to hide the 'Details' link on the Tabular Report Results page. I also have the 'Edit' link next to it that I need to keep. Any ideas? Quote Link to comment Share on other sites More sharing options...
kpcollier Posted April 7, 2022 Author Report Share Posted April 7, 2022 Ahh, this was a quick one. I wasn't too sure how to hide the Details link without hiding the Edit link at the same time, but I remembered seeing someone using 'data-cb-name' in a CSS Rule. Turns out it works for this as well. a[data-cb-name='DetailsLink']{display: none;} Quote Link to comment Share on other sites More sharing options...
DesiLogi Posted October 29, 2022 Report Share Posted October 29, 2022 Hi @kpcollier This is great--I just used it--thanks for posting! kpcollier 1 Quote Link to comment Share on other sites More sharing options...
autonumber Posted November 1, 2022 Report Share Posted November 1, 2022 Hello! I also want to add that the other way to hide it is to hide the entire column using the code below and just adjust the number of columns based on your Results page design. Header: <style> #target table:nth-of-type(1) td:nth-of-type(5) {display: none;} #target table:nth-of-type(1) th:nth-of-type(5) {display: none;} </style> </header> <div id="target"> <header> Footer: </div> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.