Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
waffensmith
Partner - Contributor II
Partner - Contributor II

Hide Full Screen

In all the threads I read, it claims that since Qlik Sense Enterprise September 2020 release, it is possible to hide the full screen option on a visualization by selecting the "Disable hover menu" option in Appearance->General. I am using Qlik Sense Enterprise May 2021 and this option does not hide any of the right click options. Can you please confirm if there is a way to hide the Full Screen option when right clicking on a visualization. 

Labels (1)
1 Solution

Accepted Solutions
chris_djih
Creator III
Creator III

As you speaking of "right clicking" i want to make sure, that we don't confuse functionalities.
the "Disable hover menu" only disables the menu, when you hover over the right upper corner.
Of course the right-click event is still possible.

So if you want to disable the rightclick-event, paste this into your theme.css (or use multiKPI for sheet specific CSS)

/* -- Hide "fullscreen" in rightclick actions-- */
li[id="zoom-in"] {
    display: none;
}
If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.

View solution in original post

9 Replies
Mario_Petre
Support
Support

You can embed the sheet / object into a mashup, where you can have more control over how these objects behave and which features are present. 

Is the full screen functionality interfering with something else in your system? What are you trying to achieve?

chris_djih
Creator III
Creator III

As you speaking of "right clicking" i want to make sure, that we don't confuse functionalities.
the "Disable hover menu" only disables the menu, when you hover over the right upper corner.
Of course the right-click event is still possible.

So if you want to disable the rightclick-event, paste this into your theme.css (or use multiKPI for sheet specific CSS)

/* -- Hide "fullscreen" in rightclick actions-- */
li[id="zoom-in"] {
    display: none;
}
If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.
waffensmith
Partner - Contributor II
Partner - Contributor II
Author

I want to hide the option to show full screen when right clicking. I'm just going off of what was mentioned in these threads:

https://community.qlik.com/t5/New-to-Qlik-Sense/how-to-disable-snapshot-and-full-screen-icons/td-p/1...
https://community.qlik.com/t5/Suggest-an-Idea/Make-it-possible-to-turn-off-expand-button/idi-p/15008...

It seemed like this was something delivered in Sept 2020, but it may be something else.

We can look into the modifying the theme.

chris_djih
Creator III
Creator III

the "delivered" seems to aim on the global deactivation of all hover-menues in an app, 
under App settings:
grafik.png

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.
vdesansky
Contributor II
Contributor II

Is it possible to disable the rightclick-event per .qv-object? Your method works, but it disable "fullscreen" for all objects on sheet.

chris_djih
Creator III
Creator III

As far as i know, you can not specify this behaviour to different objects.
The rightclick menu is its own entity und the information on which object it is opened cannot be processed by CSS.

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.
vdesansky
Contributor II
Contributor II

Thank you Chris!

Can you please explain what is "li" in that CSS and how "id" can be found?

chris_djih
Creator III
Creator III

You just open the Web-Developper-Tools of your browser (forw Firefox it is F12) and then you can point and hover over the elements and the tools show you from which codeblock the element is buit . And from this codeblock you can copy the id.

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.
vdesansky
Contributor II
Contributor II

Thank you, I will try.