Jump to content

Hide Details Page Link on Tabular Report


Recommended Posts

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?

Link to comment
Share on other sites

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;}
Link to comment
Share on other sites

  • 6 months later...

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>

 

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...