Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
lrobin_perso
Contributor
Contributor

How to hide table header in a container

Hi everyone,

I need to hide the header of a table inside a container.

Using a multi-KPI object, the following css syntax works outside of a container but not inside the container (jGgvV is the id of the table object) : 

div[tid="jGgvV"] .qv-st-header {
display: none;
}

Thanks in advance for your help.

Regards,

Laurent

Labels (1)
1 Solution

Accepted Solutions
alex_colombo
Employee
Employee

Hi @lrobin_perso , try this. It will hide all table headers in all containers. If you need to hide specific table from specific container, you have to select dom element with object ID, such as div[tid="_yourObjectId"].

And keep in mind that you are accessing classes name inserted by the product and these may change name in future realeases.

.qv-object-content-container thead.qv-st-header{
     display:none
}

 

View solution in original post

1 Reply
alex_colombo
Employee
Employee

Hi @lrobin_perso , try this. It will hide all table headers in all containers. If you need to hide specific table from specific container, you have to select dom element with object ID, such as div[tid="_yourObjectId"].

And keep in mind that you are accessing classes name inserted by the product and these may change name in future realeases.

.qv-object-content-container thead.qv-st-header{
     display:none
}