Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
andyjalexlive
Contributor III
Contributor III

Mashup object labels and titles

Hello

I recently upgraded Qlik sense desktop and it has led to some anomalies on my mashup. Each object now has a Object name label and object title. Does anyone know how to not show them. Please see screen shot 

 

Thanks 


Andy

 

 

Labels (2)
1 Solution

Accepted Solutions
andyjalexlive
Contributor III
Contributor III
Author

In the end it turned out to be a label not a title which was causing the issue:

<label class="hidden-screen-reader-label" q-translation="Object.xxx">xxx</label>

 

Changing the label css display attribute to none seems to have done the trick.

label{display:none}

Thanks for your help 

 

View solution in original post

6 Replies
ErikWetterberg

andyjalexlive
Contributor III
Contributor III
Author

Hi Erik

 

I'm using the capabilities API. My html looks like 

 

<get-object qvid="'pyNtBwH'" id="'pyNtBwH'" height="220"  interaction="true"></get-object>

 

Best


Andy

ErikWetterberg

Hi,

As far as I know there is no get-object in capabilities API. Looks like an angular directive or custom object or something. That is probably where your problem is. Perhaps @Yianni_Ververis can help?

Yianni_Ververis
Employee
Employee

That code indeed looks like one of my angular directives 🙂

Regarding hiding the labels, you can do it via css

.qv-object-title { display: none; }

 

andyjalexlive
Contributor III
Contributor III
Author

In the end it turned out to be a label not a title which was causing the issue:

<label class="hidden-screen-reader-label" q-translation="Object.xxx">xxx</label>

 

Changing the label css display attribute to none seems to have done the trick.

label{display:none}

Thanks for your help 

 

h_prakash
Creator II
Creator II

Hi Andy,

 

I am facing the same issue. Can you please share the Mashup code. I am not sure where to insert Label Tag code in HTML.  Any help would be apprecitated.