Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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
}
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
}